Update various comments

* moeo/src/algo/moeoSPEA2.h: replace NSGA-II by SPEA2 in comments.
 * moeo/src/diversity/moeoFrontByFrontCrowdingDiversityAssignment.h:  Fix typos.
 * moeo/src/diversity/moeoNearestNeighborDiversityAssignment.h: Mention SPEA2. Cite Zitzler.
This commit is contained in:
manu 2014-04-25 21:27:52 +02:00
commit 38ccef5058
3 changed files with 12 additions and 5 deletions

View file

@ -255,7 +255,7 @@ protected:
eoQuadCloneOp < MOEOT > defaultQuadOp;
/** an object for genetic operators (used as default) */
eoSGAGenOp < MOEOT > defaultSGAGenOp;
/** fitness assignment used in NSGA-II */
/** fitness assignment used in SPEA2 */
moeoDominanceCountRankingFitnessAssignment < MOEOT > fitnessAssignment;
/** general breeder */
eoGeneralBreeder < MOEOT > genBreed;
@ -265,7 +265,7 @@ protected:
eoSelectTransform <MOEOT> selectTransform;
/** breeder */
eoBreed < MOEOT > & breed;
/** diversity assignment used in NSGA-II */
/** diversity assignment used in SPEA2 */
moeoNearestNeighborDiversityAssignment < MOEOT > diversityAssignment;
/** elitist replacement */
moeoGenerationalReplacement < MOEOT > replace;

View file

@ -44,9 +44,9 @@
/**
* Diversity assignment sheme based on crowding proposed in:
* Diversity assignment scheme based on crowding proposed in:
* K. Deb, A. Pratap, S. Agarwal, T. Meyarivan, "A Fast and Elitist Multi-Objective Genetic Algorithm: NSGA-II", IEEE Transactions on Evolutionary Computation, vol. 6, no. 2 (2002).
* Tis strategy assigns diversity values FRONT BY FRONT. It is, for instance, used in NSGA-II.
* This strategy assigns diversity values FRONT BY FRONT. It is, for instance, used in NSGA-II.
*/
template < class MOEOT >
class moeoFrontByFrontCrowdingDiversityAssignment : public moeoCrowdingDiversityAssignment < MOEOT >

View file

@ -46,7 +46,14 @@
#include <archive/moeoArchive.h>
/**
* moeoNearestNeighborDiversityAssignment is a moeoDiversityAssignment using distance between individuals to assign diversity.
* moeoNearestNeighborDiversityAssignment is a moeoDiversityAssignment
* using distance between individuals to assign diversity. Proposed in:
* E. Zitzler, M. Laumanns, and L. Thiele. SPEA2: Improving the
* Strength Pareto Evolutionary Algorithm. Technical Report 103,
* Computer Engineering and Networks Laboratory (TIK), ETH Zurich,
* Zurich, Switzerland, 2001.
* It is used in moeoSPEA2.
*/
template < class MOEOT >
class moeoNearestNeighborDiversityAssignment : public moeoDiversityAssignment < MOEOT >