Class ParetoConstraintComparator
java.lang.Object
org.moeaframework.core.comparator.ParetoConstraintComparator
- All Implemented Interfaces:
DominanceComparator
Compares solutions based on the Pareto efficiency of their constraints.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
ParetoConstraintComparator
public ParetoConstraintComparator()Constructs a Pareto constraint comparator.
-
-
Method Details
-
compare
Description copied from interface:DominanceComparator
Compares the two solutions using a dominance relation, returning-1
ifsolution1
dominatessolution2
,1
ifsolution2
dominatessolution1
, and0
if the solutions are non-dominated.- Specified by:
compare
in interfaceDominanceComparator
- Parameters:
solution1
- the first solutionsolution2
- the second solution- Returns:
-1
ifsolution1
dominatessolution2
,1
ifsolution2
dominatessolution1
, and0
if the solutions are non-dominated
-