Class DefaultSolver<Solution_>
- java.lang.Object
-
- org.optaplanner.core.impl.solver.AbstractSolver<Solution_>
-
- org.optaplanner.core.impl.solver.DefaultSolver<Solution_>
-
- Type Parameters:
Solution_
- the solution type, the class with thePlanningSolution
annotation
- All Implemented Interfaces:
Solver<Solution_>
public class DefaultSolver<Solution_> extends AbstractSolver<Solution_>
Default implementation forSolver
.- See Also:
Solver
,AbstractSolver
-
-
Field Summary
Fields Modifier and Type Field Description protected BasicPlumbingTermination<Solution_>
basicPlumbingTermination
protected EnvironmentMode
environmentMode
protected RandomFactory
randomFactory
protected SolverScope<Solution_>
solverScope
protected AtomicBoolean
solving
-
Fields inherited from class org.optaplanner.core.impl.solver.AbstractSolver
bestSolutionRecaller, logger, phaseLifecycleSupport, phaseList, solverEventSupport, termination
-
-
Constructor Summary
Constructors Constructor Description DefaultSolver(EnvironmentMode environmentMode, RandomFactory randomFactory, BestSolutionRecaller<Solution_> bestSolutionRecaller, BasicPlumbingTermination<Solution_> basicPlumbingTermination, Termination<Solution_> termination, List<Phase<Solution_>> phaseList, SolverScope<Solution_> solverScope, String moveThreadCountDescription)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
addProblemFactChange(ProblemFactChange<Solution_> problemFactChange)
Schedules aProblemFactChange
to be processed.boolean
addProblemFactChanges(List<ProblemFactChange<Solution_>> problemFactChangeList)
Schedules multipleProblemFactChange
s to be processed.BestSolutionRecaller<Solution_>
getBestSolutionRecaller()
EnvironmentMode
getEnvironmentMode()
List<Phase<Solution_>>
getPhaseList()
RandomFactory
getRandomFactory()
InnerScoreDirectorFactory<Solution_,?>
getScoreDirectorFactory()
SolverScope<Solution_>
getSolverScope()
long
getTimeMillisSpent()
boolean
isEveryProblemFactChangeProcessed()
Checks if all scheduledProblemFactChange
s have been processed.boolean
isSolving()
This method is thread-safe.boolean
isTerminateEarly()
This method is thread-safe.void
outerSolvingEnded(SolverScope<Solution_> solverScope)
void
outerSolvingStarted(SolverScope<Solution_> solverScope)
Solution_
solve(Solution_ problem)
Solves the planning problem and returns the best solution encountered (which might or might not be optimal, feasible or even initialized).void
solvingEnded(SolverScope<Solution_> solverScope)
void
solvingStarted(SolverScope<Solution_> solverScope)
boolean
terminateEarly()
Notifies the solver that it should stop at its earliest convenience.-
Methods inherited from class org.optaplanner.core.impl.solver.AbstractSolver
addEventListener, addPhaseLifecycleListener, removeEventListener, removePhaseLifecycleListener, runPhases
-
-
-
-
Field Detail
-
environmentMode
protected EnvironmentMode environmentMode
-
randomFactory
protected RandomFactory randomFactory
-
basicPlumbingTermination
protected BasicPlumbingTermination<Solution_> basicPlumbingTermination
-
solving
protected final AtomicBoolean solving
-
solverScope
protected final SolverScope<Solution_> solverScope
-
-
Constructor Detail
-
DefaultSolver
public DefaultSolver(EnvironmentMode environmentMode, RandomFactory randomFactory, BestSolutionRecaller<Solution_> bestSolutionRecaller, BasicPlumbingTermination<Solution_> basicPlumbingTermination, Termination<Solution_> termination, List<Phase<Solution_>> phaseList, SolverScope<Solution_> solverScope, String moveThreadCountDescription)
-
-
Method Detail
-
getEnvironmentMode
public EnvironmentMode getEnvironmentMode()
-
getRandomFactory
public RandomFactory getRandomFactory()
-
getScoreDirectorFactory
public InnerScoreDirectorFactory<Solution_,?> getScoreDirectorFactory()
-
getBestSolutionRecaller
public BestSolutionRecaller<Solution_> getBestSolutionRecaller()
-
getSolverScope
public SolverScope<Solution_> getSolverScope()
-
getTimeMillisSpent
public long getTimeMillisSpent()
-
isSolving
public boolean isSolving()
Description copied from interface:Solver
This method is thread-safe.- Returns:
- true if the
Solver.solve(Solution_)
method is still running.
-
terminateEarly
public boolean terminateEarly()
Description copied from interface:Solver
Notifies the solver that it should stop at its earliest convenience. This method returns immediately, but it takes an undetermined time for theSolver.solve(Solution_)
to actually return.If the solver is running in daemon mode, this is the only way to terminate it normally.
This method is thread-safe. It can only be called from a different thread because the original thread is still calling
Solver.solve(Object)
.- Returns:
- true if successful, false if was already terminating or terminated
- See Also:
Solver.isTerminateEarly()
,Future.cancel(boolean)
-
isTerminateEarly
public boolean isTerminateEarly()
Description copied from interface:Solver
This method is thread-safe.- Returns:
- true if terminateEarly has been called since the
Solver
started. - See Also:
Future.isCancelled()
-
addProblemFactChange
public boolean addProblemFactChange(ProblemFactChange<Solution_> problemFactChange)
Description copied from interface:Solver
Schedules aProblemFactChange
to be processed.As a side-effect, this restarts the
Solver
, effectively resetting allTermination
s, but notSolver.terminateEarly()
.This method is thread-safe. Follows specifications of
BlockingQueue.add(Object)
with by default a capacity ofInteger.MAX_VALUE
.- Parameters:
problemFactChange
- never null- Returns:
- true (as specified by
Collection.add(E)
) - See Also:
Solver.addProblemFactChanges(List)
-
addProblemFactChanges
public boolean addProblemFactChanges(List<ProblemFactChange<Solution_>> problemFactChangeList)
Description copied from interface:Solver
Schedules multipleProblemFactChange
s to be processed.As a side-effect, this restarts the
Solver
, effectively resetting allTermination
s, but notSolver.terminateEarly()
.This method is thread-safe. Follows specifications of
Collection.addAll(Collection)
with by default a capacity ofInteger.MAX_VALUE
.- Parameters:
problemFactChangeList
- never null- Returns:
- true (as specified by
Collection.add(E)
) - See Also:
Solver.addProblemFactChange(ProblemFactChange)
-
isEveryProblemFactChangeProcessed
public boolean isEveryProblemFactChangeProcessed()
Description copied from interface:Solver
Checks if all scheduledProblemFactChange
s have been processed.This method is thread-safe.
- Returns:
- true if there are no
ProblemFactChange
s left to do
-
solve
public final Solution_ solve(Solution_ problem)
Description copied from interface:Solver
Solves the planning problem and returns the best solution encountered (which might or might not be optimal, feasible or even initialized).It can take seconds, minutes, even hours or days before this method returns, depending on the
Termination
configuration. To terminate aSolver
early, callSolver.terminateEarly()
.- Parameters:
problem
- never null, aPlanningSolution
, usually its planning variables are uninitialized- Returns:
- never null, but it can return the original, uninitialized
PlanningSolution
with a nullScore
. - See Also:
Solver.terminateEarly()
-
outerSolvingStarted
public void outerSolvingStarted(SolverScope<Solution_> solverScope)
-
solvingStarted
public void solvingStarted(SolverScope<Solution_> solverScope)
- Overrides:
solvingStarted
in classAbstractSolver<Solution_>
-
solvingEnded
public void solvingEnded(SolverScope<Solution_> solverScope)
- Overrides:
solvingEnded
in classAbstractSolver<Solution_>
-
outerSolvingEnded
public void outerSolvingEnded(SolverScope<Solution_> solverScope)
-
-