From da1ac50e606f8b2de0c839308d6dbf0e30cc68b8 Mon Sep 17 00:00:00 2001 From: jboisson Date: Thu, 22 Jan 2009 16:17:50 +0000 Subject: [PATCH] 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 --- trunk/paradiseo-mo/doc/mo.doxyfile.cmake | 7 ------- trunk/paradiseo-mo/src/moExpl.h | 6 +++--- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/trunk/paradiseo-mo/doc/mo.doxyfile.cmake b/trunk/paradiseo-mo/doc/mo.doxyfile.cmake index ab30c3021..60e84efda 100644 --- a/trunk/paradiseo-mo/doc/mo.doxyfile.cmake +++ b/trunk/paradiseo-mo/doc/mo.doxyfile.cmake @@ -156,13 +156,6 @@ JAVADOC_AUTOBRIEF = YES 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 # member inherits the documentation from any documented member that it # re-implements. diff --git a/trunk/paradiseo-mo/src/moExpl.h b/trunk/paradiseo-mo/src/moExpl.h index dc52e37ce..803f0ead5 100644 --- a/trunk/paradiseo-mo/src/moExpl.h +++ b/trunk/paradiseo-mo/src/moExpl.h @@ -67,10 +67,10 @@ class moExpl : public eoBF < const EOT &, EOT &, bool > \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; - return (*explorers[index])(_new); + _new_solution=(EOT)_old_solution; + return (*explorers[index])(_new_solution); } //! Add an algorithm or mutation to neighborhoods vector