Class HardSoftScoreHolderImpl
java.lang.Object
org.optaplanner.constraint.drl.holder.AbstractScoreHolder<HardSoftScore>
org.optaplanner.constraint.drl.holder.HardSoftScoreHolderImpl
- All Implemented Interfaces:
- HardSoftScoreHolder,- ScoreHolder<HardSoftScore>
public final class HardSoftScoreHolderImpl
extends AbstractScoreHolder<HardSoftScore>
implements HardSoftScoreHolder
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolderAbstractScoreHolder.BigDecimalMatchExecutor, AbstractScoreHolder.ConstraintActivationUnMatchListener, AbstractScoreHolder.IntMatchExecutor, AbstractScoreHolder.LongMatchExecutor, AbstractScoreHolder.ScoreMatchExecutor<Score_ extends Score<Score_>>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected intprotected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.IntMatchExecutor> protected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<HardSoftScore>> Slower thanmatchExecutorByNumberMapprotected intFields inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolderconstraintMatchEnabled, constraintMatchTotalMap, indictmentMap
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight) voidaddMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight, int softWeight) voidaddSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softWeight) voidconfigureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftScore constraintWeight) extractScore(int initScore) intintvoidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext) For internal use only, use penalize() or reward() instead.voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) For internal use only, use penalize() or reward() instead.voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier) For internal use only, use penalize() or reward() instead.voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext, BigDecimal weightMultiplier) For internal use only, use penalize() or reward() instead.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext) Penalize a match by theConstraintWeightnegated.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeightMultiplier, int softWeightMultiplier) Penalize a match by theConstraintWeightnegated and multiplied with the specific weightMultiplier per score level.voidreward(org.kie.api.runtime.rule.RuleContext kcontext) Reward a match by theConstraintWeight.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeightMultiplier, int softWeightMultiplier) Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level.Methods inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolderbuildScoreHolder, extractJustificationList, getConstraintMatchTotalMap, getIndictmentMap, isConstraintMatchEnabled, registerConstraintMatch
- 
Field Details- 
matchExecutorByNumberMapprotected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.IntMatchExecutor> matchExecutorByNumberMap
- 
matchExecutorByScoreMapprotected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<HardSoftScore>> matchExecutorByScoreMapSlower thanmatchExecutorByNumberMap
- 
hardScoreprotected int hardScore
- 
softScoreprotected int softScore
 
- 
- 
Constructor Details- 
HardSoftScoreHolderImplpublic HardSoftScoreHolderImpl(boolean constraintMatchEnabled) 
 
- 
- 
Method Details- 
getHardScorepublic int getHardScore()
- 
getSoftScorepublic int getSoftScore()
- 
configureConstraintWeightpublic void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftScore constraintWeight) - Overrides:
- configureConstraintWeightin class- AbstractScoreHolder<HardSoftScore>
 
- 
penalizepublic void penalize(org.kie.api.runtime.rule.RuleContext kcontext) Description copied from interface:ScoreHolderPenalize a match by theConstraintWeightnegated.- Specified by:
- penalizein interface- ScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null, the magic variable in DRL
 
- 
penalizepublic void penalize(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) Description copied from interface:HardSoftScoreHolderPenalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.- Specified by:
- penalizein interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- weightMultiplier- at least 0
 
- 
penalizepublic void penalize(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeightMultiplier, int softWeightMultiplier) Description copied from interface:HardSoftScoreHolderPenalize a match by theConstraintWeightnegated and multiplied with the specific weightMultiplier per score level. Slower thanHardSoftScoreHolder.penalize(RuleContext, int).- Specified by:
- penalizein interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- hardWeightMultiplier- at least 0
- softWeightMultiplier- at least 0
 
- 
rewardpublic void reward(org.kie.api.runtime.rule.RuleContext kcontext) Description copied from interface:ScoreHolderReward a match by theConstraintWeight.- Specified by:
- rewardin interface- ScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null, the magic variable in DRL
 
- 
rewardpublic void reward(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) Description copied from interface:HardSoftScoreHolderReward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.- Specified by:
- rewardin interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- weightMultiplier- at least 0
 
- 
rewardpublic void reward(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeightMultiplier, int softWeightMultiplier) Description copied from interface:HardSoftScoreHolderReward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level. Slower thanHardSoftScoreHolder.reward(RuleContext, int).- Specified by:
- rewardin interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- hardWeightMultiplier- at least 0
- softWeightMultiplier- at least 0
 
- 
impactScorepublic void impactScore(org.kie.api.runtime.rule.RuleContext kcontext) Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Overrides:
- impactScorein class- AbstractScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null
 
- 
impactScorepublic void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier) Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Specified by:
- impactScorein interface- HardSoftScoreHolder
- Specified by:
- impactScorein class- AbstractScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null
- weightMultiplier- any
 
- 
impactScorepublic void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier) Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Specified by:
- impactScorein class- AbstractScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null
- weightMultiplier- any
 
- 
impactScoreDescription copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Specified by:
- impactScorein class- AbstractScoreHolder<HardSoftScore>
- Parameters:
- kcontext- never null
- weightMultiplier- any
 
- 
addHardConstraintMatchpublic void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight) - Specified by:
- addHardConstraintMatchin interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- hardWeight- higher is better, negative for a penalty, positive for a reward
 
- 
addSoftConstraintMatchpublic void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softWeight) - Specified by:
- addSoftConstraintMatchin interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- softWeight- higher is better, negative for a penalty, positive for a reward
 
- 
addMultiConstraintMatchpublic void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight, int softWeight) - Specified by:
- addMultiConstraintMatchin interface- HardSoftScoreHolder
- Parameters:
- kcontext- never null, the magic variable in DRL
- hardWeight- higher is better, negative for a penalty, positive for a reward
- softWeight- higher is better, negative for a penalty, positive for a reward
 
- 
extractScore- Specified by:
- extractScorein class- AbstractScoreHolder<HardSoftScore>
 
 
-