added a FIXME
This commit is contained in:
parent
a84417d349
commit
20c90d93f9
1 changed files with 4 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Reference in a new issue