Package org.optaplanner.core.impl.score
Class DefaultScoreManager<Solution_,Score_ extends Score<Score_>>
java.lang.Object
org.optaplanner.core.impl.score.DefaultScoreManager<Solution_,Score_>
- Type Parameters:
Solution_- the solution type, the class with thePlanningSolutionannotation
- All Implemented Interfaces:
ScoreManager<Solution_,Score_>
public final class DefaultScoreManager<Solution_,Score_ extends Score<Score_>>
extends Object
implements ScoreManager<Solution_,Score_>
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultScoreManager(SolverFactory<Solution_> solverFactory) DefaultScoreManager(SolverManager<Solution_, ProblemId_> solverManager) -
Method Summary
Modifier and TypeMethodDescriptionexplainScore(Solution_ solution) Calculates and retrievesConstraintMatchTotals andIndictments necessary for describing the quality of a particular solution.getSummary(Solution_ solution) Returns a diagnostic text that explains the solution through theConstraintMatchAPI to identify which constraints or planning entities cause that score quality.updateScore(Solution_ solution)
-
Constructor Details
-
DefaultScoreManager
-
DefaultScoreManager
-
-
Method Details
-
getScoreDirectorFactory
-
updateScore
Description copied from interface:ScoreManager- Specified by:
updateScorein interfaceScoreManager<Solution_,Score_ extends Score<Score_>> - Parameters:
solution- never null
-
getSummary
Description copied from interface:ScoreManagerReturns a diagnostic text that explains the solution through theConstraintMatchAPI to identify which constraints or planning entities cause that score quality. In case of aninfeasiblesolution, this can help diagnose the cause of that.Do not parse this string. Instead, to provide this information in a UI or a service, use
ScoreManager.explainScore(Object)to retrieveScoreExplanation.getConstraintMatchTotalMap()andScoreExplanation.getIndictmentMap()and convert those into a domain specific API.- Specified by:
getSummaryin interfaceScoreManager<Solution_,Score_ extends Score<Score_>> - Parameters:
solution- never null- Returns:
- null if
ScoreManager.updateScore(Object)returns null with the same solution
-
explainScore
Description copied from interface:ScoreManagerCalculates and retrievesConstraintMatchTotals andIndictments necessary for describing the quality of a particular solution.- Specified by:
explainScorein interfaceScoreManager<Solution_,Score_ extends Score<Score_>> - Parameters:
solution- never null- Returns:
- never null
-