|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectes.udc.gii.common.eaf.util.MOUtil
public class MOUtil
Utility class for genetic algorithms for multiple objectives.
Field Summary | |
---|---|
static int |
FIND_ALL
|
static int |
FIRST_DOMINATES
The first individual dominates the second one. |
static int |
NOT_DOMINATED
The individuals are not-dominated by each other. |
static int |
SECOND_DOMINATES
The second individual dominates the first one. |
Constructor Summary | |
---|---|
MOUtil()
Creates a new instance of MOUtil |
Method Summary | |
---|---|
static int |
checkDominance(Individual first,
Individual second)
Checks the dominance between two individuals. |
static java.util.List<Individual> |
findNonDominatedIndividuals(java.util.List<Individual> individuals,
int number)
Finds a number of non-dominated individuals. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int FIND_ALL
public static final int FIRST_DOMINATES
public static final int SECOND_DOMINATES
public static final int NOT_DOMINATED
Constructor Detail |
---|
public MOUtil()
Method Detail |
---|
public static int checkDominance(Individual first, Individual second)
first
- First individual.second
- Second individual.
FIRST_DOMINATES
if the first individual dominates the
second one. SECOND_DOMINATES
if the second individual dominates
the first one. NOT_DOMINATED
if the individuals are not-dominated.public static java.util.List<Individual> findNonDominatedIndividuals(java.util.List<Individual> individuals, int number)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |