Uses of Interface
org.optaplanner.core.impl.phase.Phase
-
-
Uses of Phase in org.optaplanner.core.config.phase
Methods in org.optaplanner.core.config.phase that return Phase Modifier and Type Method Description abstract Phase
PhaseConfig. buildPhase(int phaseIndex, HeuristicConfigPolicy solverConfigPolicy, BestSolutionRecaller bestSolutionRecaller, Termination solverTermination)
-
Uses of Phase in org.optaplanner.core.config.solver
Methods in org.optaplanner.core.config.solver that return types with arguments of type Phase Modifier and Type Method Description protected <Solution_>
List<Phase<Solution_>>SolverConfig. buildPhaseList(HeuristicConfigPolicy configPolicy, BestSolutionRecaller bestSolutionRecaller, Termination termination)
-
Uses of Phase in org.optaplanner.core.impl.constructionheuristic
Subinterfaces of Phase in org.optaplanner.core.impl.constructionheuristic Modifier and Type Interface Description interface
ConstructionHeuristicPhase<Solution_>
AConstructionHeuristicPhase
is aPhase
which uses a construction heuristic algorithm, such as First Fit, First Fit Decreasing, Cheapest Insertion, ...Classes in org.optaplanner.core.impl.constructionheuristic that implement Phase Modifier and Type Class Description class
DefaultConstructionHeuristicPhase<Solution_>
Default implementation ofConstructionHeuristicPhase
. -
Uses of Phase in org.optaplanner.core.impl.exhaustivesearch
Subinterfaces of Phase in org.optaplanner.core.impl.exhaustivesearch Modifier and Type Interface Description interface
ExhaustiveSearchPhase<Solution_>
AExhaustiveSearchPhase
is aPhase
which uses an exhaustive algorithm, such as Brute Force.Classes in org.optaplanner.core.impl.exhaustivesearch that implement Phase Modifier and Type Class Description class
DefaultExhaustiveSearchPhase<Solution_>
Default implementation ofExhaustiveSearchPhase
. -
Uses of Phase in org.optaplanner.core.impl.localsearch
Subinterfaces of Phase in org.optaplanner.core.impl.localsearch Modifier and Type Interface Description interface
LocalSearchPhase<Solution_>
ALocalSearchPhase
is aPhase
which uses a Local Search algorithm, such asTabu Search
,Simulated Annealing
,Late Acceptance
, ...Classes in org.optaplanner.core.impl.localsearch that implement Phase Modifier and Type Class Description class
DefaultLocalSearchPhase<Solution_>
Default implementation ofLocalSearchPhase
. -
Uses of Phase in org.optaplanner.core.impl.partitionedsearch
Subinterfaces of Phase in org.optaplanner.core.impl.partitionedsearch Modifier and Type Interface Description interface
PartitionedSearchPhase<Solution_>
APartitionedSearchPhase
is aPhase
which uses a Partition Search algorithm.Classes in org.optaplanner.core.impl.partitionedsearch that implement Phase Modifier and Type Class Description class
DefaultPartitionedSearchPhase<Solution_>
Default implementation ofPartitionedSearchPhase
.Constructor parameters in org.optaplanner.core.impl.partitionedsearch with type arguments of type Phase Constructor Description PartitionSolver(BestSolutionRecaller<Solution_> bestSolutionRecaller, Termination termination, List<Phase<Solution_>> phaseList, DefaultSolverScope<Solution_> solverScope)
-
Uses of Phase in org.optaplanner.core.impl.phase
Classes in org.optaplanner.core.impl.phase that implement Phase Modifier and Type Class Description class
AbstractPhase<Solution_>
class
NoChangePhase<Solution_>
ANoChangePhase
is aPhase
which does nothing. -
Uses of Phase in org.optaplanner.core.impl.phase.custom
Subinterfaces of Phase in org.optaplanner.core.impl.phase.custom Modifier and Type Interface Description interface
CustomPhase<Solution_>
Classes in org.optaplanner.core.impl.phase.custom that implement Phase Modifier and Type Class Description class
DefaultCustomPhase<Solution_>
Default implementation ofCustomPhase
. -
Uses of Phase in org.optaplanner.core.impl.solver
Fields in org.optaplanner.core.impl.solver with type parameters of type Phase Modifier and Type Field Description protected List<Phase<Solution_>>
AbstractSolver. phaseList
Methods in org.optaplanner.core.impl.solver that return types with arguments of type Phase Modifier and Type Method Description List<Phase<Solution_>>
DefaultSolver. getPhaseList()
Constructor parameters in org.optaplanner.core.impl.solver with type arguments of type Phase Constructor Description AbstractSolver(BestSolutionRecaller<Solution_> bestSolutionRecaller, Termination termination, List<Phase<Solution_>> phaseList)
DefaultSolver(EnvironmentMode environmentMode, RandomFactory randomFactory, BestSolutionRecaller<Solution_> bestSolutionRecaller, BasicPlumbingTermination basicPlumbingTermination, Termination termination, List<Phase<Solution_>> phaseList, DefaultSolverScope<Solution_> solverScope)
-