diff --git a/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/CMakeLists.txt b/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/CMakeLists.txt index 76a67b67b..298586c70 100644 --- a/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/CMakeLists.txt +++ b/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/CMakeLists.txt @@ -30,7 +30,7 @@ SET( PHYLOMOEA_SOURCES eigensolver.cpp treeIterator.cpp utils.cpp ) -ADD_EXECUTABLE( PhyloMOEA ${PHYLOMOEA_SOURCES} ) +ADD_EXECUTABLE( PhyloMOEA-serial ${PHYLOMOEA_SOURCES} ) TARGET_LINK_LIBRARIES(PhyloMOEA gsl gslcblas GTL eo eoutils ga moeo cma) diff --git a/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/moeoNSGAII2.h b/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/moeoNSGAII2.h index 06b00d732..0ca267d5e 100644 --- a/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/moeoNSGAII2.h +++ b/contribution/branches/PhyloMOEA/PhyloMOEA-serial/PhyloMOEA/moeoNSGAII2.h @@ -201,7 +201,7 @@ protected: /** fitness assignment used in NSGA */ moeoDominanceDepthFitnessAssignment < MOEOT > fitnessAssignment; /** diversity assignment used in NSGA-II */ - moeoFrontByFrontCrowdingDiversityAssignment2 < MOEOT > diversityAssignment; + moeoFrontByFrontCrowdingDiversityAssignment < MOEOT > diversityAssignment; /** elitist replacement */ moeoElitistReplacement < MOEOT > replace;