Modifications of the SPOT Interface to the (1+1)-ES

The meta mode requires a small modification of the interface to the algorithm, because each SPOT run of the meta mode is performed in a new sub directory. Therefore, the call string of the algorithm has to be modified. Replace
callString <- paste("java -jar simpleOnePlusOneES.jar"
  ,	seed, steps, target, f, n, xp0, sigma0, a, g, px, py, sep = " ")
with
callString <- paste("java -jar 
   /home/bartz/workspace/SvnSpot/trunk/ExperimentsBartz.d/Java0Meta.d/simpleOnePlusOneES.jar"
   , seed, steps, target, f, n, xp0, sigma0, a, g, px, py, sep = " ")
Note, you have to replace
/home/bartz/workspace/SvnSpot/trunk/ExperimentsBartz.d/Java0Meta.d/simpleOnePlusOneES.jar
with the path to your local simpleOnePlusOneES.jar file.



bartz 2010-08-24