@Deprecated public class HardSoftDoubleScoreDefinition extends AbstractScoreDefinition<HardSoftDoubleScore>
| Constructor and Description |
|---|
HardSoftDoubleScoreDefinition()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
HardSoftDoubleScore |
buildOptimisticBound(InitializingScoreTrend initializingScoreTrend,
HardSoftDoubleScore score)
Deprecated.
|
HardSoftDoubleScore |
buildPessimisticBound(InitializingScoreTrend initializingScoreTrend,
HardSoftDoubleScore score)
Deprecated.
|
ScoreHolder |
buildScoreHolder(boolean constraintMatchEnabled)
Deprecated.
Used by
DroolsScoreDirector. |
ScoreInliner<HardSoftDoubleScore> |
buildScoreInliner(boolean constraintMatchEnabled)
Deprecated.
Used by
BavetConstraintFactory |
HardSoftDoubleScore |
divideBySanitizedDivisor(HardSoftDoubleScore dividend,
HardSoftDoubleScore divisor)
Deprecated.
Return
Score whose every level is the result of dividing the matching levels in this and the divisor. |
HardSoftDoubleScore |
fromLevelNumbers(int initScore,
Number[] levelNumbers)
Deprecated.
The opposite of
Score.toLevelNumbers(). |
int |
getFeasibleLevelsSize()
Deprecated.
Returns the number of levels of
Score.toLevelNumbers(). |
int |
getLevelsSize()
Deprecated.
Returns the length of
Score.toLevelNumbers() for every Score of this definition. |
HardSoftDoubleScore |
getOneSoftestScore()
Deprecated.
The score that represents the softest possible one.
|
Class<HardSoftDoubleScore> |
getScoreClass()
Deprecated.
|
HardSoftDoubleScore |
getZeroScore()
Deprecated.
The score that represents zero.
|
HardSoftDoubleScore |
parseScore(String scoreString)
Deprecated.
|
divide, divide, divide, divide, formatScore, getInitLabel, getLevelLabels, isCompatibleArithmeticArgument, sanitize, sanitize, sanitize, sanitize, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitisNegativeOrZero, isPositiveOrZeropublic int getLevelsSize()
ScoreDefinitionScore.toLevelNumbers() for every Score of this definition.
For example: returns 2 on HardSoftScoreDefinition.getLevelsSize in interface ScoreDefinition<HardSoftDoubleScore>getLevelsSize in class AbstractScoreDefinition<HardSoftDoubleScore>public int getFeasibleLevelsSize()
ScoreDefinitionScore.toLevelNumbers().
that are used to determine Score.isFeasible().ScoreDefinition.getLevelsSize()public Class<HardSoftDoubleScore> getScoreClass()
ScoreDefinitionClass of the actual Score implementation.
For example: returns HardSoftScore.class on HardSoftScoreDefinition.public HardSoftDoubleScore getZeroScore()
ScoreDefinitionpublic HardSoftDoubleScore getOneSoftestScore()
ScoreDefinitionpublic HardSoftDoubleScore parseScore(String scoreString)
ScoreDefinitionscoreString - never nullScoreDefinition.formatScore(Score),
ScoreUtils.parseScore(Class, String)public HardSoftDoubleScore fromLevelNumbers(int initScore, Number[] levelNumbers)
ScoreDefinitionScore.toLevelNumbers().initScore - <= 0, managed by OptaPlanner, needed as a parameter in the Score's creation
method, see Score.getInitScore()levelNumbers - never nullpublic ScoreInliner<HardSoftDoubleScore> buildScoreInliner(boolean constraintMatchEnabled)
ScoreDefinitionBavetConstraintFactoryconstraintMatchEnabled - true if ScoreDirector.isConstraintMatchEnabled() should be truepublic ScoreHolder buildScoreHolder(boolean constraintMatchEnabled)
ScoreDefinitionDroolsScoreDirector.constraintMatchEnabled - true if ScoreDirector.isConstraintMatchEnabled() should be truepublic HardSoftDoubleScore buildOptimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftDoubleScore score)
ScoreDefinitionScore which is equal or better than any other Score with more variables initialized
(while the already variables don't change).initializingScoreTrend - never null, with InitializingScoreTrend.getLevelsSize()
equal to ScoreDefinition.getLevelsSize().score - never null, with Score.getInitScore() 0.public HardSoftDoubleScore buildPessimisticBound(InitializingScoreTrend initializingScoreTrend, HardSoftDoubleScore score)
ScoreDefinitionScore which is equal or worse than any other Score with more variables initialized
(while the already variables don't change).initializingScoreTrend - never null, with InitializingScoreTrend.getLevelsSize()
equal to ScoreDefinition.getLevelsSize().score - never null, with Score.getInitScore() 0public HardSoftDoubleScore divideBySanitizedDivisor(HardSoftDoubleScore dividend, HardSoftDoubleScore divisor)
ScoreDefinitionScore whose every level is the result of dividing the matching levels in this and the divisor.
When rounding is needed, it is floored (as defined by Math.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 dividedCopyright © 2006–2021 JBoss by Red Hat. All rights reserved.