Class BendableLongScoreHolderImpl
- java.lang.Object
 - 
- org.optaplanner.constraint.drl.holder.AbstractScoreHolder<BendableLongScore>
 - 
- org.optaplanner.constraint.drl.holder.BendableLongScoreHolderImpl
 
 
 
- 
- All Implemented Interfaces:
 BendableLongScoreHolder,ScoreHolder<BendableLongScore>
public final class BendableLongScoreHolderImpl extends AbstractScoreHolder<BendableLongScore> implements BendableLongScoreHolder
- See Also:
 BendableLongScore
 
- 
- 
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 Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.LongMatchExecutor>matchExecutorByNumberMapprotected Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<BendableLongScore>>matchExecutorByScoreMapSlower thanmatchExecutorByNumberMap- 
Fields inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap 
 - 
 
- 
Constructor Summary
Constructors Constructor Description BendableLongScoreHolderImpl(boolean constraintMatchEnabled, int hardLevelsSize, int softLevelsSize) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardLevel, long weight)voidaddMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeights, long[] softWeights)voidaddSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softLevel, long weight)voidconfigureConstraintWeight(org.kie.api.definition.rule.Rule rule, BendableLongScore constraintWeight)BendableLongScoreextractScore(int initScore)intgetHardLevelsSize()longgetHardScore(int hardLevel)intgetSoftLevelsSize()longgetSoftScore(int softLevel)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, long weightMultiplier)Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeightsMultiplier, long[] softWeightsMultiplier)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, long weightMultiplier)Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeightsMultiplier, long[] softWeightsMultiplier)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.LongMatchExecutor> matchExecutorByNumberMap
 
- 
matchExecutorByScoreMap
protected final Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<BendableLongScore>> matchExecutorByScoreMap
Slower thanmatchExecutorByNumberMap 
 - 
 
- 
Method Detail
- 
getHardLevelsSize
public int getHardLevelsSize()
- Specified by:
 getHardLevelsSizein interfaceBendableLongScoreHolder
 
- 
getHardScore
public long getHardScore(int hardLevel)
 
- 
getSoftLevelsSize
public int getSoftLevelsSize()
- Specified by:
 getSoftLevelsSizein interfaceBendableLongScoreHolder
 
- 
getSoftScore
public long getSoftScore(int softLevel)
 
- 
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, BendableLongScore constraintWeight)- Overrides:
 configureConstraintWeightin classAbstractScoreHolder<BendableLongScore>
 
- 
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Description copied from interface:ScoreHolderPenalize a match by theConstraintWeightnegated.- Specified by:
 penalizein interfaceScoreHolder<BendableLongScore>- Parameters:
 kcontext- never null, the magic variable in DRL
 
- 
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Description copied from interface:BendableLongScoreHolderPenalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.- Specified by:
 penalizein interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
 
- 
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeightsMultiplier, long[] softWeightsMultiplier)Description copied from interface:BendableLongScoreHolderPenalize a match by theConstraintWeightnegated and multiplied with the specific weightMultiplier per score level. Slower thanBendableLongScoreHolder.penalize(RuleContext, long).- Specified by:
 penalizein interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeightsMultiplier- elements at least 0softWeightsMultiplier- elements 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<BendableLongScore>- Parameters:
 kcontext- never null, the magic variable in DRL
 
- 
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Description copied from interface:BendableLongScoreHolderReward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.- Specified by:
 rewardin interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
 
- 
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeightsMultiplier, long[] softWeightsMultiplier)Description copied from interface:BendableLongScoreHolderReward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level. Slower thanBendableLongScoreHolder.reward(RuleContext, long).- Specified by:
 rewardin interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeightsMultiplier- elements at least 0softWeightsMultiplier- elements 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<BendableLongScore>- 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 classAbstractScoreHolder<BendableLongScore>- 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 interfaceBendableLongScoreHolder- Specified by:
 impactScorein classAbstractScoreHolder<BendableLongScore>- 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<BendableLongScore>- Parameters:
 kcontext- never nullweightMultiplier- any
 
- 
addHardConstraintMatch
public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardLevel, long weight)- Specified by:
 addHardConstraintMatchin interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardLevel-0 <= hardLevel <BendableLongScoreHolder.getHardLevelsSize(). ThescoreLevelishardLevelfor hard levels andsoftLevel + hardLevelSizefor soft levels.weight- higher is better, negative for a penalty, positive for a reward
 
- 
addSoftConstraintMatch
public void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softLevel, long weight)- Specified by:
 addSoftConstraintMatchin interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLsoftLevel-0 <= softLevel <BendableLongScoreHolder.getSoftLevelsSize(). ThescoreLevelishardLevelfor hard levels andsoftLevel + hardLevelSizefor soft levels.weight- higher is better, negative for a penalty, positive for a reward
 
- 
addMultiConstraintMatch
public void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeights, long[] softWeights)- Specified by:
 addMultiConstraintMatchin interfaceBendableLongScoreHolder- Parameters:
 kcontext- never null, the magic variable in DRLhardWeights- never null, array of lengthBendableLongScoreHolder.getHardLevelsSize()softWeights- never null, array of lengthBendableLongScoreHolder.getSoftLevelsSize()
 
- 
extractScore
public BendableLongScore extractScore(int initScore)
- Specified by:
 extractScorein classAbstractScoreHolder<BendableLongScore>
 
 - 
 
 -