Class BreadthFirstNodeComparator
- java.lang.Object
-
- org.optaplanner.core.impl.exhaustivesearch.node.comparator.BreadthFirstNodeComparator
-
- All Implemented Interfaces:
Comparator<ExhaustiveSearchNode>
public class BreadthFirstNodeComparator extends Object implements Comparator<ExhaustiveSearchNode>
Investigate nodes layer by layer: investigate shallower nodes first. This results in horrible memory scalability.A typical
ScoreBounder
'sScoreBounder.calculateOptimisticBound(ScoreDirector, Score)
will be weak, which results in horrible performance scalability too.
-
-
Constructor Summary
Constructors Constructor Description BreadthFirstNodeComparator(boolean scoreBounderEnabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(ExhaustiveSearchNode a, ExhaustiveSearchNode b)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Method Detail
-
compare
public int compare(ExhaustiveSearchNode a, ExhaustiveSearchNode b)
- Specified by:
compare
in interfaceComparator<ExhaustiveSearchNode>
-
-