Skip to content

Commit

Permalink
Enable debugging mode on LRGV and WDS
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Jan 1, 2025
1 parent 136939f commit d349fac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/org/moeaframework/benchmarks/LRGV.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public class LRGV extends ExternalProblem {
public LRGV() {
super(new Builder()
.withCommand(SystemUtils.IS_OS_WINDOWS ? "lrgv.exe" : "lrgv", "-m", "std-io", "-b", "AllDecAll", "-c", "ten-year")
.withWorkingDirectory(new File("./native/LRGV/bin/")));
.withWorkingDirectory(new File("./native/LRGV/bin/"))
.withDebugging());
}

@Override
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/moeaframework/benchmarks/WDS.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public double[] getEpsilon() {
public Builder getBuilder() {
return new Builder()
.withCommand(SystemUtils.IS_OS_WINDOWS ? getName() + ".exe" : getName())
.withWorkingDirectory(new File("./native/WDS/bin/"));
.withWorkingDirectory(new File("./native/WDS/bin/"))
.withDebugging();
}

}
Expand Down

0 comments on commit d349fac

Please sign in to comment.