documentation modifications

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@178 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2007-02-06 16:35:01 +00:00
commit 4b45aadd5d
16 changed files with 76 additions and 73 deletions

View file

@ -33,10 +33,10 @@ public:
* Ctor
* @param _term stopping criteria
* @param _select selector
* @param _ls a multi-objective local search
* @param _mols a multi-objective local search
* @param _arch the archive
*/
eoHybridLS (eoContinue < MOEOT > & _term, eoSelect < MOEOT > & _select, moeoLS < MOEOT > & _ls, moeoArchive < MOEOT > & _arch) : term(_term), select(_select), ls(_ls), arch(_arch)
eoHybridLS (eoContinue < MOEOT > & _term, eoSelect < MOEOT > & _select, moeoLS < MOEOT > & _mols, moeoArchive < MOEOT > & _arch) : term(_term), select(_select), mols(_mols), arch(_arch)
{}
/**
@ -50,9 +50,9 @@ public:
eoPop < MOEOT > selectedSolutions;
select(arch, selectedSolutions);
// apply the local search to every selected solution
for (unsigned i=0; i<selectedSolutions.size(); i ++)
for (unsigned i=0; i<selectedSolutions.size(); i++)
{
ls(selectedSolutions[i], arch);
mols(selectedSolutions[i], arch);
}
}
}
@ -65,7 +65,7 @@ private:
/** selector */
eoSelect < MOEOT > & select;
/** multi-objective local search */
moeoLS < MOEOT > & ls;
moeoLS < MOEOT > & mols;
/** archive */
moeoArchive < MOEOT > & arch;