Class SimpleDoubleScoreHolder
- java.lang.Object
-
- org.optaplanner.core.api.score.holder.AbstractScoreHolder<SimpleDoubleScore>
-
- org.optaplanner.core.api.score.buildin.simpledouble.SimpleDoubleScoreHolder
-
- All Implemented Interfaces:
Serializable,ScoreHolder<SimpleDoubleScore>
@Deprecated public class SimpleDoubleScoreHolder extends AbstractScoreHolder<SimpleDoubleScore>
Deprecated.Double-based scores are deprecated as floating point numbers are not associative (A + B + C == C + B + A) and therefore they are not compatible with incremental score calculation. UseSimpleBigDecimalScoreHolderor a scaledSimpleLongScoreHolderinstead.WARNING: NOT RECOMMENDED TO USE DUE TO ROUNDING ERRORS THAT CAUSE SCORE CORRUPTION. UseSimpleBigDecimalScoreHolderinstead.- See Also:
SimpleDoubleScore, Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
AbstractScoreHolder.ConstraintActivationUnMatchListener
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Double>>matchExecutorByNumberMapDeprecated.protected doublescoreDeprecated.-
Fields inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap, zeroScore
-
-
Constructor Summary
Constructors Constructor Description SimpleDoubleScoreHolder(boolean constraintMatchEnabled)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, double weight)Deprecated.voidconfigureConstraintWeight(org.kie.api.definition.rule.Rule rule, SimpleDoubleScore constraintWeight)Deprecated.Sets up aConstraintWeightfrom theConstraintConfigurationduring initialization.SimpleDoubleScoreextractScore(int initScore)Deprecated.doublegetScore()Deprecated.voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext)Deprecated.For internal use only, use penalize() or reward() instead.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext)Deprecated.Penalize a match by theConstraintWeightnegated.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)Deprecated.Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.voidreward(org.kie.api.runtime.rule.RuleContext kcontext)Deprecated.Reward a match by theConstraintWeight.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)Deprecated.Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.-
Methods inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
extractJustificationList, getConstraintMatchTotalMap, getConstraintMatchTotals, getIndictmentMap, impactScore, impactScore, impactScore, isConstraintMatchEnabled, registerConstraintMatch, setJustificationListConverter
-
-
-
-
Field Detail
-
matchExecutorByNumberMap
protected final Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Double>> matchExecutorByNumberMap
Deprecated.
-
score
protected double score
Deprecated.
-
-
Method Detail
-
getScore
public double getScore()
Deprecated.
-
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, SimpleDoubleScore constraintWeight)Deprecated.Description copied from interface:ScoreHolderSets up aConstraintWeightfrom theConstraintConfigurationduring initialization.- Specified by:
configureConstraintWeightin interfaceScoreHolder<SimpleDoubleScore>- Overrides:
configureConstraintWeightin classAbstractScoreHolder<SimpleDoubleScore>- Parameters:
rule- never nullconstraintWeight- never null, withScore.getInitScore()equal to 0.
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Deprecated.Penalize a match by theConstraintWeightnegated.- Parameters:
kcontext- never null, the magic variable in DRL
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)Deprecated.Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.- Parameters:
kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
-
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext)
Deprecated.Reward a match by theConstraintWeight.- Parameters:
kcontext- never null, the magic variable in DRL
-
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)Deprecated.Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.- Parameters:
kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
-
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext)
Deprecated.Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Overrides:
impactScorein classAbstractScoreHolder<SimpleDoubleScore>- Parameters:
kcontext- never null
-
addConstraintMatch
public void addConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, double weight)Deprecated.- Parameters:
kcontext- never null, the magic variable in DRLweight- higher is better, negative for a penalty, positive for a reward
-
extractScore
public SimpleDoubleScore extractScore(int initScore)
Deprecated.Description copied from interface:ScoreHolderExtracts theScore, calculated by theKieSessionforDroolsScoreDirector.Should not be called directly, use
ScoreDirector.calculateScore()instead.- Parameters:
initScore-<= 0, managed by OptaPlanner, needed as a parameter in theScore's creation method, seeScore.getInitScore()- Returns:
- never null, the
Scoreof the workingPlanningSolution
-
-