Skip to content
Snippets Groups Projects
Unverified Commit 3e1bfd7c authored by K.Filippopolitis's avatar K.Filippopolitis Committed by GitHub
Browse files

Hardcoded the type of the algorithm (#77)

parent 59ca41fe
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,8 @@ public record Exareme2AlgorithmRequestDTO( ...@@ -11,7 +11,8 @@ public record Exareme2AlgorithmRequestDTO(
String request_id, String request_id,
Exareme2InputDataRequestDTO inputdata, Exareme2InputDataRequestDTO inputdata,
Map<String, Object> parameters, Map<String, Object> parameters,
Map<String, Object> preprocessing Map<String, Object> preprocessing,
String type
) { ) {
public Exareme2AlgorithmRequestDTO( public Exareme2AlgorithmRequestDTO(
...@@ -23,7 +24,8 @@ public record Exareme2AlgorithmRequestDTO( ...@@ -23,7 +24,8 @@ public record Exareme2AlgorithmRequestDTO(
experimentUUID.toString(), experimentUUID.toString(),
getInputData(exaremeAlgorithmRequestParamDTOs), getInputData(exaremeAlgorithmRequestParamDTOs),
getParameters(exaremeAlgorithmRequestParamDTOs, exareme2AlgorithmSpecificationDTO), getParameters(exaremeAlgorithmRequestParamDTOs, exareme2AlgorithmSpecificationDTO),
getPreprocessing(exaremeTransformers, exareme2AlgorithmSpecificationDTO) getPreprocessing(exaremeTransformers, exareme2AlgorithmSpecificationDTO),
"exareme2"
); );
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment