Just to take care of exception. will fix later

This commit is contained in:
leandrohw 2018-02-03 22:50:29 -08:00
parent d01d928e54
commit db8b41038b

View file

@ -146,7 +146,12 @@ public class ObjectiveSqureError extends Objective
odeSim.setTimeLimit(0);
odeSim.setupForNewRun(0);
try {
odeSim.setupForNewRun(0);
} catch (IOException e) {
// TODO fix this later
e.printStackTrace();
}
return new Result(sum);
}