Added additional version of optimizetoind without fileoutput

This commit is contained in:
Michael de Paly 2010-02-02 01:31:34 +00:00
parent c955f4a955
commit 5d0d441812

View File

@ -889,6 +889,11 @@ public class OptimizerFactory {
}
public static IndividualInterface optimizeToInd(GOParameters params) {
OptimizerRunnable runnable = optimize(new OptimizerRunnable(params,
false));
return runnable.getResult();
}
public static IndividualInterface optimizeToInd(GOParameters params,
String outputFilePrefix) {