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:
 HardSoftScore
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolder
AbstractScoreHolder.BigDecimalMatchExecutor, AbstractScoreHolder.ConstraintActivationUnMatchListener, AbstractScoreHolder.IntMatchExecutor, AbstractScoreHolder.LongMatchExecutor, AbstractScoreHolder.ScoreMatchExecutor<Score_ extends AbstractScore<Score_>> 
 - 
 
- 
Field Summary
Fields Modifier and Type Field Description protected inthardScoreprotected Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.IntMatchExecutor>matchExecutorByNumberMapprotected Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<HardSoftScore>>matchExecutorByScoreMapSlower thanmatchExecutorByNumberMapprotected intsoftScore- 
Fields inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap 
 - 
 
- 
Constructor Summary
Constructors Constructor Description HardSoftScoreHolderImpl(boolean constraintMatchEnabled) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHardConstraintMatch(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)HardSoftScoreextractScore(int initScore)intgetHardScore()intgetSoftScore()voidimpactScore(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.AbstractScoreHolder
buildScoreHolder, extractJustificationList, getConstraintMatchTotalMap, getIndictmentMap, isConstraintMatchEnabled, registerConstraintMatch 
 - 
 
 - 
 
- 
- 
Field Detail
- 
matchExecutorByNumberMap
protected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.IntMatchExecutor> matchExecutorByNumberMap
 
- 
matchExecutorByScoreMap
protected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<HardSoftScore>> matchExecutorByScoreMap
Slower thanmatchExecutorByNumberMap 
- 
hardScore
protected int hardScore
 
- 
softScore
protected int softScore
 
 - 
 
- 
Method Detail
- 
getHardScore
public int getHardScore()
 
- 
getSoftScore
public int getSoftScore()
 
- 
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftScore constraintWeight)- Overrides:
 configureConstraintWeightin classAbstractScoreHolder<HardSoftScore>
 
- 
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Description copied from interface:ScoreHolderPenalize a match by theConstraintWeightnegated.- Specified by:
 penalizein interfaceScoreHolder<HardSoftScore>- Parameters:
 kcontext- never null, the magic variable in DRL
 
- 
penalize
public 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 interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
 
- 
penalize
public 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 interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeightMultiplier- at least 0softWeightMultiplier- at least 0
 
- 
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext)
Description copied from interface:ScoreHolderReward a match by theConstraintWeight.- Specified by:
 rewardin interfaceScoreHolder<HardSoftScore>- Parameters:
 kcontext- never null, the magic variable in DRL
 
- 
reward
public 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 interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
 
- 
reward
public 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 interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeightMultiplier- at least 0softWeightMultiplier- at least 0
 
- 
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext)
Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Overrides:
 impactScorein classAbstractScoreHolder<HardSoftScore>- Parameters:
 kcontext- never null
 
- 
impactScore
public 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 interfaceHardSoftScoreHolder- Specified by:
 impactScorein classAbstractScoreHolder<HardSoftScore>- Parameters:
 kcontext- never nullweightMultiplier- any
 
- 
impactScore
public 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 classAbstractScoreHolder<HardSoftScore>- Parameters:
 kcontext- never nullweightMultiplier- any
 
- 
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, BigDecimal weightMultiplier)Description copied from class:AbstractScoreHolderFor internal use only, use penalize() or reward() instead.- Specified by:
 impactScorein classAbstractScoreHolder<HardSoftScore>- Parameters:
 kcontext- never nullweightMultiplier- any
 
- 
addHardConstraintMatch
public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight)- Specified by:
 addHardConstraintMatchin interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeight- higher is better, negative for a penalty, positive for a reward
 
- 
addSoftConstraintMatch
public void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softWeight)- Specified by:
 addSoftConstraintMatchin interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLsoftWeight- higher is better, negative for a penalty, positive for a reward
 
- 
addMultiConstraintMatch
public void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight, int softWeight)- Specified by:
 addMultiConstraintMatchin interfaceHardSoftScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeight- higher is better, negative for a penalty, positive for a rewardsoftWeight- higher is better, negative for a penalty, positive for a reward
 
- 
extractScore
public HardSoftScore extractScore(int initScore)
- Specified by:
 extractScorein classAbstractScoreHolder<HardSoftScore>
 
 - 
 
 -