Skip to content

Commit

Permalink
fix: update api specs
Browse files Browse the repository at this point in the history
  • Loading branch information
joszamama committed Jul 15, 2023
1 parent 4356265 commit 4ceff2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/upo/wmdsp/controllers/IGController.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public String computeAlgorithm(@RequestParam("file") MultipartFile file,
ReconstructionMethod reconstructionMethod = ReconstructionMethod.valueOf(reconstructionMethodString);

// Create a new IG object with the provided parameters
IG ig = new IG(fileName, weight, maxIterations, REMOVE_VERTICES_PERCENTAGE, insertionMethod,
IG ig = new IG("execution/" + fileName, weight, maxIterations, REMOVE_VERTICES_PERCENTAGE, insertionMethod,
destructionMethod, reconstructionMethod);

// Run the greedy algorithm
Expand Down

0 comments on commit 4ceff2f

Please sign in to comment.