diff --git a/contribution/branches/MOLS/src2/dmls.h b/contribution/branches/MOLS/src2/dmls.h index 437b4305e..ac44aad55 100644 --- a/contribution/branches/MOLS/src2/dmls.h +++ b/contribution/branches/MOLS/src2/dmls.h @@ -16,4 +16,6 @@ #include "moeoUnvisitedSelect.h" #include "moeoPLS1.h" #include "moeoPLS2.h" +#include "moeoDMLSGenupdater.h" +#include "moeoDMLSMonOp.h" diff --git a/contribution/branches/MOLS/src2/moeoDMLSGenUpdater.h b/contribution/branches/MOLS/src2/moeoDMLSGenUpdater.h index c8e2074ef..156d9b49d 100644 --- a/contribution/branches/MOLS/src2/moeoDMLSGenUpdater.h +++ b/contribution/branches/MOLS/src2/moeoDMLSGenUpdater.h @@ -30,7 +30,7 @@ class moeoDMLSGenUpdater : public eoUpdater /** Ctor with a dmls. * @param _eval a evaluation function (used to instantiate the dmls) - * @param _eplorer a neighborhood explorer (used to instantiate the dmls) + * @param _explorer a neighborhood explorer (used to instantiate the dmls) * @param _select a selector of unvisited individuals of a population (used to instantiate the dmls) * @param _globalArchive the same archive used in the other algorithm * @param _continuator is a Generational Continuator which allow to run dmls on the global archive each X generation(s) @@ -49,7 +49,7 @@ class moeoDMLSGenUpdater : public eoUpdater /** Ctor with a dmls. * @param _eval a evaluation function (used to instantiate the dmls) * @param _dmlsArchive an archive (used to instantiate the dmls) - * @param _eplorer a neighborhood explorer (used to instantiate the dmls) + * @param _explorer a neighborhood explorer (used to instantiate the dmls) * @param _select a selector of unvisited individuals of a population (used to instantiate the dmls) * @param _globalArchive the same archive used in the other algorithm * @param _continuator is a Generational Continuator which allow to run dmls on the global archive each X generation(s) diff --git a/contribution/branches/MOLS/src2/moeoDMLSMonOp.h b/contribution/branches/MOLS/src2/moeoDMLSMonOp.h index f9d9f01bd..b40335a66 100644 --- a/contribution/branches/MOLS/src2/moeoDMLSMonOp.h +++ b/contribution/branches/MOLS/src2/moeoDMLSMonOp.h @@ -27,7 +27,7 @@ class moeoDMLSMonOp : public eoMonOp < typename Move::EOType > /** Ctor with a dmls. * @param _eval a evaluation function (used to instantiate the dmls) - * @param _eplorer a neighborhood explorer (used to instantiate the dmls) + * @param _explorer a neighborhood explorer (used to instantiate the dmls) * @param _select a selector of unvisited individuals of a population (used to instantiate the dmls) * @param _step (default=1) is the number of Generation of dmls (used to instantiate the defaultContinuator for the dmls) * @param _verbose verbose mode @@ -42,7 +42,7 @@ class moeoDMLSMonOp : public eoMonOp < typename Move::EOType > /** Ctor with a dmls. * @param _eval a evaluation function (used to instantiate the dmls) * @param _dmlsArchive an archive (used to instantiate the dmls) - * @param _eplorer a neighborhood explorer (used to instantiate the dmls) + * @param _explorer a neighborhood explorer (used to instantiate the dmls) * @param _select a selector of unvisited individuals of a population (used to instantiate the dmls) * @param _step (default=1) is the number of Generation of dmls (used to instantiate the defaultContinuator for the dmls) * @param _verbose verbose mode diff --git a/contribution/branches/MOLS/src2/moeoFirstImprovingNeighborhoodExplorer.h b/contribution/branches/MOLS/src2/moeoFirstImprovingNeighborhoodExplorer.h index c23a81652..61230e0bd 100644 --- a/contribution/branches/MOLS/src2/moeoFirstImprovingNeighborhoodExplorer.h +++ b/contribution/branches/MOLS/src2/moeoFirstImprovingNeighborhoodExplorer.h @@ -63,7 +63,6 @@ public: * @param _moveInit the move initializer * @param _nextMove allow to do or not a move * @param _incrEval a (generally) efficient evaluation fonction - * @param _number the number of neighbor to explore */ moeoFirstImprovingNeighborhoodExplorer( moMoveInit < Move > & _moveInit, diff --git a/contribution/branches/MOLS/src2/moeoNoDesimprovingNeighborhoodExplorer.h b/contribution/branches/MOLS/src2/moeoNoDesimprovingNeighborhoodExplorer.h index f3f141c28..b50876372 100644 --- a/contribution/branches/MOLS/src2/moeoNoDesimprovingNeighborhoodExplorer.h +++ b/contribution/branches/MOLS/src2/moeoNoDesimprovingNeighborhoodExplorer.h @@ -63,7 +63,6 @@ public: * @param _moveInit the move initializer * @param _nextMove allow to do or not a move * @param _incrEval a (generally) efficient evaluation fonction - * @param _number the number of neighbor to explore */ moeoNoDesimprovingNeighborhoodExplorer( moMoveInit < Move > & _moveInit,