From b97b99dd6f9e79b56450757ca1eb2a3bc0c9fd4b Mon Sep 17 00:00:00 2001 From: liefooga Date: Fri, 13 Apr 2007 15:07:07 +0000 Subject: [PATCH] rename moeoArchiveFitness* in moeoArchiveObjectiveVector* git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@233 331e1502-861f-0410-8da2-ba01fb791d7f --- ...r.h => moeoArchiveObjectiveVectorSavingUpdater.h} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename branches/paradiseo-moeo-1.0/src/{moeoArchiveFitnessSavingUpdater.h => moeoArchiveObjectiveVectorSavingUpdater.h} (77%) diff --git a/branches/paradiseo-moeo-1.0/src/moeoArchiveFitnessSavingUpdater.h b/branches/paradiseo-moeo-1.0/src/moeoArchiveObjectiveVectorSavingUpdater.h similarity index 77% rename from branches/paradiseo-moeo-1.0/src/moeoArchiveFitnessSavingUpdater.h rename to branches/paradiseo-moeo-1.0/src/moeoArchiveObjectiveVectorSavingUpdater.h index 20cdf831d..6920b3a30 100644 --- a/branches/paradiseo-moeo-1.0/src/moeoArchiveFitnessSavingUpdater.h +++ b/branches/paradiseo-moeo-1.0/src/moeoArchiveObjectiveVectorSavingUpdater.h @@ -1,7 +1,7 @@ // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- //----------------------------------------------------------------------------- -// moeoArchiveFitnessSavingUpdater.h +// moeoArchiveObjectiveVectorSavingUpdater.h // (c) OPAC Team (LIFL), Dolphin Project (INRIA), 2006 /* This library... @@ -10,8 +10,8 @@ */ //----------------------------------------------------------------------------- -#ifndef MOEOARCHIVEFITNESSSAVINGUPDATER_H_ -#define MOEOARCHIVEFITNESSSAVINGUPDATER_H_ +#ifndef MOEOARCHIVEOBJECTIVEVECTORSAVINGUPDATER_H_ +#define MOEOARCHIVEOBJECTIVEVECTORSAVINGUPDATER_H_ #include #include @@ -25,7 +25,7 @@ * This class allows to save the fitnesses of solutions contained in an archive into a file at each generation. */ template -class moeoArchiveFitnessSavingUpdater : public eoUpdater +class moeoArchiveObjectiveVectorSavingUpdater : public eoUpdater { public: @@ -35,7 +35,7 @@ public: * @param _filename target filename * @param _id own ID */ - moeoArchiveFitnessSavingUpdater (moeoArchive & _arch, const std::string & _filename = "Res/Arch", int _id = -1) : arch(_arch), filename(_filename), id(_id), counter(0) + moeoArchiveObjectiveVectorSavingUpdater (moeoArchive & _arch, const std::string & _filename, int _id = -1) : arch(_arch), filename(_filename), id(_id), counter(0) {} /** @@ -67,4 +67,4 @@ private: }; -#endif /*MOEOARCHIVEFITNESSSAVINGUPDATER_H_*/ +#endif /*MOEOARCHIVEOBJECTIVEVECTORSAVINGUPDATER_H_*/