From 20c90d93f9baaf9a392c7d64d3a03183ea986e38 Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Wed, 18 Aug 2010 19:13:38 +0200 Subject: [PATCH] added a FIXME --- application/eda_sa/main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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);