Class AggregateConstraintComparator

java.lang.Object
org.moeaframework.core.comparator.AggregateConstraintComparator
All Implemented Interfaces:
Comparator<Solution>, DominanceComparator

public class AggregateConstraintComparator extends Object implements DominanceComparator, Comparator<Solution>
Compares solutions based on their magnitude of constraint violations. Absolute values of constraints are used, so only the magnitude of the constraint violation is important.
  • Constructor Details

    • AggregateConstraintComparator

      public AggregateConstraintComparator()
      Constructs an aggregate constraint comparator.
  • Method Details

    • compare

      public int compare(Solution solution1, Solution solution2)
      Description copied from interface: DominanceComparator
      Compares the two solutions using a dominance relation, returning -1 if solution1 dominates solution2, 1 if solution2 dominates solution1, and 0 if the solutions are non-dominated.
      Specified by:
      compare in interface Comparator<Solution>
      Specified by:
      compare in interface DominanceComparator
      Parameters:
      solution1 - the first solution
      solution2 - the second solution
      Returns:
      -1 if solution1 dominates solution2, 1 if solution2 dominates solution1, and 0 if the solutions are non-dominated