From 8b3d81bd71f14c0d48212e42263cfbeb5338c44b Mon Sep 17 00:00:00 2001 From: liefooga Date: Mon, 16 Apr 2007 08:22:17 +0000 Subject: [PATCH] update doc git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@236 331e1502-861f-0410-8da2-ba01fb791d7f --- branches/paradiseo-moeo-1.0/src/moeoCombinedLS.h | 3 +-- branches/paradiseo-moeo-1.0/src/moeoDiversityAssignment.h | 4 ++-- .../src/moeoFastNonDominatedSortingFitnessAssignment.h | 2 +- branches/paradiseo-moeo-1.0/src/moeoFitnessAssignment.h | 4 ++-- .../src/moeoIndicatorBasedFitnessAssignment.h | 4 ++-- .../src/moeoReferencePointIndicatorBasedFitnessAssignment.h | 4 ++-- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/branches/paradiseo-moeo-1.0/src/moeoCombinedLS.h b/branches/paradiseo-moeo-1.0/src/moeoCombinedLS.h index bfee4980b..98727f700 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoCombinedLS.h +++ b/branches/paradiseo-moeo-1.0/src/moeoCombinedLS.h @@ -27,7 +27,6 @@ public: /** * Ctor - * @param _eval the full evaluator of a solution * @param _first_mols the first multi-objective local search to add */ moeoCombinedLS(moeoLS < MOEOT, Type > & _first_mols) @@ -47,7 +46,7 @@ public: /** * Gives a new solution in order to explore the neigborhood. * The new non-dominated solutions are added to the archive - * @param _moeo the solution + * @param _type the object to apply the local search to * @param _arch the archive of non-dominated solutions */ void operator () (Type _type, moeoArchive < MOEOT > & _arch) diff --git a/branches/paradiseo-moeo-1.0/src/moeoDiversityAssignment.h b/branches/paradiseo-moeo-1.0/src/moeoDiversityAssignment.h index f7709ce2a..66e50dd38 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoDiversityAssignment.h +++ b/branches/paradiseo-moeo-1.0/src/moeoDiversityAssignment.h @@ -31,7 +31,7 @@ public: /** * Updates the diversity values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ virtual void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) = 0; @@ -81,7 +81,7 @@ public: /** * Updates the diversity values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) { diff --git a/branches/paradiseo-moeo-1.0/src/moeoFastNonDominatedSortingFitnessAssignment.h b/branches/paradiseo-moeo-1.0/src/moeoFastNonDominatedSortingFitnessAssignment.h index fca730317..95e558c02 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoFastNonDominatedSortingFitnessAssignment.h +++ b/branches/paradiseo-moeo-1.0/src/moeoFastNonDominatedSortingFitnessAssignment.h @@ -94,7 +94,7 @@ public: * @warning NOT IMPLEMENTED, DO NOTHING ! * Updates the fitness values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector * @warning NOT IMPLEMENTED, DO NOTHING ! */ void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) diff --git a/branches/paradiseo-moeo-1.0/src/moeoFitnessAssignment.h b/branches/paradiseo-moeo-1.0/src/moeoFitnessAssignment.h index 4c9247ed0..37c6a5ccc 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoFitnessAssignment.h +++ b/branches/paradiseo-moeo-1.0/src/moeoFitnessAssignment.h @@ -31,7 +31,7 @@ public: /** * Updates the fitness values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ virtual void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) = 0; @@ -81,7 +81,7 @@ public: /** * Updates the fitness values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) { diff --git a/branches/paradiseo-moeo-1.0/src/moeoIndicatorBasedFitnessAssignment.h b/branches/paradiseo-moeo-1.0/src/moeoIndicatorBasedFitnessAssignment.h index 52f9aa5c6..0fcec7363 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoIndicatorBasedFitnessAssignment.h +++ b/branches/paradiseo-moeo-1.0/src/moeoIndicatorBasedFitnessAssignment.h @@ -60,7 +60,7 @@ public: /** * Updates the fitness values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) { @@ -81,7 +81,7 @@ public: * Updates the fitness values of the whole population _pop by taking the adding of the objective vector _objVec into account * and returns the fitness value of _objVec. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ double updateByAdding(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) { diff --git a/branches/paradiseo-moeo-1.0/src/moeoReferencePointIndicatorBasedFitnessAssignment.h b/branches/paradiseo-moeo-1.0/src/moeoReferencePointIndicatorBasedFitnessAssignment.h index eed451d29..097ee16e5 100755 --- a/branches/paradiseo-moeo-1.0/src/moeoReferencePointIndicatorBasedFitnessAssignment.h +++ b/branches/paradiseo-moeo-1.0/src/moeoReferencePointIndicatorBasedFitnessAssignment.h @@ -55,9 +55,9 @@ public: /** * Updates the fitness values of the whole population _pop by taking the deletion of the objective vector _objVec into account. * @param _pop the population - * @param _objecVec the objective vector + * @param _objVec the objective vector */ - void updateByDeleting(eoPop < MOEOT > & _pop, MOEOT & _moeo) + void updateByDeleting(eoPop < MOEOT > & _pop, ObjectiveVector & _objVec) { // nothing to do ;-) }