ParadisEO-MO src update in order to avoid warning during documentation generation
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1362 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
6711639a5f
commit
da1ac50e60
2 changed files with 3 additions and 10 deletions
|
|
@ -156,13 +156,6 @@ JAVADOC_AUTOBRIEF = YES
|
||||||
|
|
||||||
MULTILINE_CPP_IS_BRIEF = NO
|
MULTILINE_CPP_IS_BRIEF = NO
|
||||||
|
|
||||||
# If the DETAILS_AT_TOP tag is set to YES then Doxygen
|
|
||||||
# will output the detailed description near the top, like JavaDoc.
|
|
||||||
# If set to NO, the detailed description appears after the member
|
|
||||||
# documentation.
|
|
||||||
|
|
||||||
DETAILS_AT_TOP = NO
|
|
||||||
|
|
||||||
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
|
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
|
||||||
# member inherits the documentation from any documented member that it
|
# member inherits the documentation from any documented member that it
|
||||||
# re-implements.
|
# re-implements.
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,10 @@ class moExpl : public eoBF < const EOT &, EOT &, bool >
|
||||||
\param _new_solution The new solution (result of the procedure).
|
\param _new_solution The new solution (result of the procedure).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
bool operator ()(const EOT & _old, EOT & _new)
|
bool operator ()(const EOT & _old_solution, EOT & _new_solution)
|
||||||
{
|
{
|
||||||
_new=(EOT)_old;
|
_new_solution=(EOT)_old_solution;
|
||||||
return (*explorers[index])(_new);
|
return (*explorers[index])(_new_solution);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Add an algorithm or mutation to neighborhoods vector
|
//! Add an algorithm or mutation to neighborhoods vector
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue