diff --git a/application/eda_sa/main.cpp b/application/eda_sa/main.cpp index 2653ddab..e689d936 100644 --- a/application/eda_sa/main.cpp +++ b/application/eda_sa/main.cpp @@ -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);