intermediate commit 5

This commit is contained in:
LPTK 2013-07-09 16:25:30 +02:00
commit 816ea1553a
11 changed files with 377 additions and 157 deletions

View file

@ -107,14 +107,21 @@ public :
virtual void init(EOT& _sol) {
for (unsigned i = 0; i < stats.size(); ++i)
stats[i]->init(_sol);
counter=1;
counter = 1;
//for (unsigned i = 0; i < updaters.size(); ++i)
// updaters[i]->init();
for (unsigned i = 0; i < moupdaters.size(); ++i)
moupdaters[i]->init();
/*
* Removed because there was no reason for it to be done here.
* It caused premature monitoring of eoParams with undefined values
*
for (unsigned int i = 0; i < monitors.size(); ++i)
(*monitors[i])();
*/
for (unsigned i = 0; i < continuators.size(); ++i)
continuators[i]->init(_sol);
}