Interface Solver<Solution_>
- 
- Type Parameters:
- Solution_- the solution type, the class with the- PlanningSolutionannotation
 - All Known Implementing Classes:
- AbstractSolver,- DefaultSolver,- PartitionSolver
 
 public interface Solver<Solution_>A Solver solves a planning problem and returns the best solution found. It's recommended to create a new Solver instance for each dataset.To create a Solver, use SolverFactory.buildSolver(). To solve a planning problem, callsolve(Object). To solve a planning problem without blocking the current thread, useSolverManagerinstead.These methods are not thread-safe and should be called from the same thread, except for the methods that are explicitly marked as thread-safe. Note that despite that solve(Solution_)is not thread-safe for clients of this class, that method is free to do multithreading inside itself.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEventListener(SolverEventListener<Solution_> eventListener)booleanaddProblemFactChange(ProblemFactChange<Solution_> problemFactChange)Schedules aProblemFactChangeto be processed.booleanaddProblemFactChanges(List<ProblemFactChange<Solution_>> problemFactChangeList)Schedules multipleProblemFactChanges to be processed.booleanisEveryProblemFactChangeProcessed()Checks if all scheduledProblemFactChanges have been processed.booleanisSolving()This method is thread-safe.booleanisTerminateEarly()This method is thread-safe.voidremoveEventListener(SolverEventListener<Solution_> eventListener)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).booleanterminateEarly()Notifies the solver that it should stop at its earliest convenience.
 
- 
- 
- 
Method Detail- 
solveSolution_ solve(Solution_ problem) 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 Terminationconfiguration. To terminate aSolverearly, callterminateEarly().- Parameters:
- problem- never null, a- PlanningSolution, usually its planning variables are uninitialized
- Returns:
- never null, but it can return the original, uninitialized PlanningSolutionwith a nullScore.
- See Also:
- terminateEarly()
 
 - 
terminateEarlyboolean terminateEarly() Notifies the solver that it should stop at its earliest convenience. This method returns immediately, but it takes an undetermined time for thesolve(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 solve(Object).- Returns:
- true if successful, false if was already terminating or terminated
- See Also:
- isTerminateEarly(),- Future.cancel(boolean)
 
 - 
isSolvingboolean isSolving() This method is thread-safe.- Returns:
- true if the solve(Solution_)method is still running.
 
 - 
isTerminateEarlyboolean isTerminateEarly() This method is thread-safe.- Returns:
- true if terminateEarly has been called since the Solverstarted.
- See Also:
- Future.isCancelled()
 
 - 
addProblemFactChangeboolean addProblemFactChange(ProblemFactChange<Solution_> problemFactChange) Schedules aProblemFactChangeto be processed.As a side-effect, this restarts the Solver, effectively resetting allTerminations, but notterminateEarly().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:
- addProblemFactChanges(List)
 
 - 
addProblemFactChangesboolean addProblemFactChanges(List<ProblemFactChange<Solution_>> problemFactChangeList) Schedules multipleProblemFactChanges to be processed.As a side-effect, this restarts the Solver, effectively resetting allTerminations, but notterminateEarly().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:
- addProblemFactChange(ProblemFactChange)
 
 - 
isEveryProblemFactChangeProcessedboolean isEveryProblemFactChangeProcessed() Checks if all scheduledProblemFactChanges have been processed.This method is thread-safe. - Returns:
- true if there are no ProblemFactChanges left to do
 
 - 
addEventListenervoid addEventListener(SolverEventListener<Solution_> eventListener) - Parameters:
- eventListener- never null
 
 - 
removeEventListenervoid removeEventListener(SolverEventListener<Solution_> eventListener) - Parameters:
- eventListener- never null
 
 
- 
 
-