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

@ -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 >