added a FIXME

This commit is contained in:
Caner Candan 2010-08-18 19:13:38 +02:00
commit 20c90d93f9

View file

@ -57,8 +57,8 @@ int main(int ac, char** av)
state.storeFunctor(modifier);
eoEvalFunc< EOT >* plainEval =
//new BopoRosenbrock< EOT, typename EOT::AtomType, const EOT& >();
new Sphere< EOT >();
new Rosenbrock< EOT >();
//new Sphere< EOT >();
state.storeFunctor(plainEval);
unsigned long max_eval = parser.getORcreateParam((unsigned long)0, "maxEval", "Maximum number of evaluations (0 = none)", 'E', "Stopping criterion").value(); // E
@ -113,6 +113,8 @@ int main(int ac, char** av)
state.storeFunctor(sampler);
// FIXME: should I set the default value of rho to pop size ?!?
unsigned int rho = parser.createParam((unsigned int)0, "rho", "Rho: metropolis sample size", 'p', section).value(); // p
moGenSolContinue< EOT >* sa_continue = new moGenSolContinue< EOT >(rho);