Class HardSoftScoreDefinition
- java.lang.Object
-
- ai.timefold.solver.core.impl.score.definition.AbstractScoreDefinition<HardSoftScore>
-
- ai.timefold.solver.core.impl.score.buildin.HardSoftScoreDefinition
-
- All Implemented Interfaces:
ScoreDefinition<HardSoftScore>
public class HardSoftScoreDefinition extends AbstractScoreDefinition<HardSoftScore>
-
-
Constructor Summary
Constructors Constructor Description HardSoftScoreDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HardSoftScorebuildOptimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftScore score)HardSoftScorebuildPessimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftScore score)HardSoftScoredivideBySanitizedDivisor(HardSoftScore dividend, HardSoftScore divisor)ReturnScorewhose every level is the result of dividing the matching levels in this and the divisor.HardSoftScorefromLevelNumbers(int initScore, Number[] levelNumbers)The opposite ofScore.toLevelNumbers().intgetFeasibleLevelsSize()Returns the number of levels ofScore.toLevelNumbers().Class<?>getNumericType()Return the type of number that the score implementation operates on.HardSoftScoregetOneSoftestScore()The score that represents the softest possible one.Class<HardSoftScore>getScoreClass()HardSoftScoregetZeroScore()The score that represents zero.HardSoftScoreparseScore(String scoreString)-
Methods inherited from class ai.timefold.solver.core.impl.score.definition.AbstractScoreDefinition
divide, divide, divide, divide, formatScore, getInitLabel, getLevelLabels, getLevelsSize, isCompatibleArithmeticArgument, sanitize, sanitize, sanitize, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ai.timefold.solver.core.impl.score.definition.ScoreDefinition
isNegativeOrZero, isPositiveOrZero
-
-
-
-
Method Detail
-
getFeasibleLevelsSize
public int getFeasibleLevelsSize()
Description copied from interface:ScoreDefinitionReturns the number of levels ofScore.toLevelNumbers(). that are used to determineScore.isFeasible().- Returns:
- at least 0, at most
ScoreDefinition.getLevelsSize()
-
getScoreClass
public Class<HardSoftScore> getScoreClass()
Description copied from interface:ScoreDefinitionReturns theClassof the actualScoreimplementation. For example: returnsHardSoftScore.classonHardSoftScoreDefinition.- Returns:
- never null
-
getZeroScore
public HardSoftScore getZeroScore()
Description copied from interface:ScoreDefinitionThe score that represents zero.- Returns:
- never null
-
getOneSoftestScore
public HardSoftScore getOneSoftestScore()
Description copied from interface:ScoreDefinitionThe score that represents the softest possible one.- Returns:
- never null
-
parseScore
public HardSoftScore parseScore(String scoreString)
Description copied from interface:ScoreDefinition- Parameters:
scoreString- never null- Returns:
- never null
- See Also:
ScoreDefinition.formatScore(Score)
-
fromLevelNumbers
public HardSoftScore fromLevelNumbers(int initScore, Number[] levelNumbers)
Description copied from interface:ScoreDefinitionThe opposite ofScore.toLevelNumbers().- Parameters:
initScore-<= 0, managed by Timefold, needed as a parameter in theScore's creation method, seeScore.initScore()levelNumbers- never null- Returns:
- never null
-
buildOptimisticBound
public HardSoftScore buildOptimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftScore score)
Description copied from interface:ScoreDefinitionBuilds aScorewhich is equal or better than any otherScorewith more variables initialized (while the already variables don't change).- Parameters:
initializingScoreTrend- never null, withInitializingScoreTrend.getLevelsSize()equal toScoreDefinition.getLevelsSize().score- never null, withScore.initScore()0.- Returns:
- never null
-
buildPessimisticBound
public HardSoftScore buildPessimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftScore score)
Description copied from interface:ScoreDefinitionBuilds aScorewhich is equal or worse than any otherScorewith more variables initialized (while the already variables don't change).- Parameters:
initializingScoreTrend- never null, withInitializingScoreTrend.getLevelsSize()equal toScoreDefinition.getLevelsSize().score- never null, withScore.initScore()0- Returns:
- never null
-
divideBySanitizedDivisor
public HardSoftScore divideBySanitizedDivisor(HardSoftScore dividend, HardSoftScore divisor)
Description copied from interface:ScoreDefinitionReturnScorewhose every level is the result of dividing the matching levels in this and the divisor. When rounding is needed, it is floored (as defined byMath.floor(double)).If any of the levels in the divisor are equal to zero, the method behaves as if they were equal to one instead.
divisor- value by which this Score is to be divided- Returns:
- this / divisor
-
getNumericType
public Class<?> getNumericType()
Description copied from interface:ScoreDefinitionReturn the type of number that the score implementation operates on. Examples:- int.class for
SimpleScore - BigDecimal.class for
SimpleBigDecimalScore
- Returns:
- never null
- int.class for
-
-