Skip to content

Commit

Permalink
Enable debug stream
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Dec 31, 2023
1 parent 84d148c commit 1b0a115
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions native/Radar/bin/startEval.m
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
function [] = startEval(nvars, nobjs, ncons, functionHandle, port)

if ispc
libname = 'moeaframework'
libname = 'moeaframework';
else
libname = 'libmoeaframework'
libname = 'libmoeaframework';
end

if ~libisloaded(libname)
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/moeaframework/benchmarks/Radar.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class Radar extends ExternalProblem {

public Radar() throws Exception {
super((String)null, startProcess());
setDebugStream(System.out);
}

public static int startProcess() throws Exception {
Expand Down

0 comments on commit 1b0a115

Please sign in to comment.