Fix matlab interface.

pom.xml now targets Java 1.6 since Matlab can't handle 1.7.
This commit is contained in:
2013-06-24 15:46:24 +02:00
parent b4d90e411e
commit bcf9e6fd6f
6 changed files with 20 additions and 20 deletions

View File

@@ -19,7 +19,7 @@ finalPop=getMultipleResults(JI);
R=30;
JI=JEInterface(@testfun, 'binary', R, R, 4, 'Display', 'iter');
JI=setOutputAllStatsFields(JI, 0); % suppress output of additional statistics, spares runtime with large populations
JI=optimizeWith(JI, 3, 'population', eva2.server.go.populations.Population(1000);
JI=optimizeWith(JI, 3, 'population', eva2.optimization.populations.Population(1000);
[sol, fit]=getResult(JI);
finalPop=getMultipleResults(JI);