Class HardSoftLongScoreHolderImpl
- java.lang.Object
-
- org.optaplanner.constraint.drl.holder.AbstractScoreHolder<HardSoftLongScore>
-
- org.optaplanner.constraint.drl.holder.HardSoftLongScoreHolderImpl
-
- All Implemented Interfaces:
HardSoftLongScoreHolder
,ScoreHolder<HardSoftLongScore>
public final class HardSoftLongScoreHolderImpl extends AbstractScoreHolder<HardSoftLongScore> implements HardSoftLongScoreHolder
- See Also:
HardSoftLongScore
-
-
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 long
hardScore
protected Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.LongMatchExecutor>
matchExecutorByNumberMap
protected Map<org.kie.api.definition.rule.Rule,AbstractScoreHolder.ScoreMatchExecutor<HardSoftLongScore>>
matchExecutorByScoreMap
Slower thanmatchExecutorByNumberMap
protected long
softScore
-
Fields inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap
-
-
Constructor Summary
Constructors Constructor Description HardSoftLongScoreHolderImpl(boolean constraintMatchEnabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight)
void
addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight, long softWeight)
void
addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long softWeight)
void
configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftLongScore constraintWeight)
HardSoftLongScore
extractScore(int initScore)
long
getHardScore()
long
getSoftScore()
void
impactScore(org.kie.api.runtime.rule.RuleContext kcontext)
For internal use only, use penalize() or reward() instead.void
impactScore(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier)
For internal use only, use penalize() or reward() instead.void
impactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)
For internal use only, use penalize() or reward() instead.void
impactScore(org.kie.api.runtime.rule.RuleContext kcontext, BigDecimal weightMultiplier)
For internal use only, use penalize() or reward() instead.void
penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Penalize a match by theConstraintWeight
negated.void
penalize(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)
Penalize a match by theConstraintWeight
negated and multiplied with the weightMultiplier for all score levels.void
penalize(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long softWeightMultiplier)
Penalize a match by theConstraintWeight
negated and multiplied with the specific weightMultiplier per score level.void
reward(org.kie.api.runtime.rule.RuleContext kcontext)
Reward a match by theConstraintWeight
.void
reward(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)
Reward a match by theConstraintWeight
multiplied with the weightMultiplier for all score levels.void
reward(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long softWeightMultiplier)
Reward a match by theConstraintWeight
multiplied 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<HardSoftLongScore>> matchExecutorByScoreMap
Slower thanmatchExecutorByNumberMap
-
hardScore
protected long hardScore
-
softScore
protected long softScore
-
-
Method Detail
-
getHardScore
public long getHardScore()
-
getSoftScore
public long getSoftScore()
-
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftLongScore constraintWeight)
- Overrides:
configureConstraintWeight
in classAbstractScoreHolder<HardSoftLongScore>
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Description copied from interface:ScoreHolder
Penalize a match by theConstraintWeight
negated.- Specified by:
penalize
in interfaceScoreHolder<HardSoftLongScore>
- 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:HardSoftLongScoreHolder
Penalize a match by theConstraintWeight
negated and multiplied with the weightMultiplier for all score levels.- Specified by:
penalize
in interfaceHardSoftLongScoreHolder
- Parameters:
kcontext
- never null, the magic variable in DRLweightMultiplier
- at least 0
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long softWeightMultiplier)
Description copied from interface:HardSoftLongScoreHolder
Penalize a match by theConstraintWeight
negated and multiplied with the specific weightMultiplier per score level. Slower thanHardSoftLongScoreHolder.penalize(RuleContext, long)
.- Specified by:
penalize
in interfaceHardSoftLongScoreHolder
- 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:ScoreHolder
Reward a match by theConstraintWeight
.- Specified by:
reward
in interfaceScoreHolder<HardSoftLongScore>
- 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:HardSoftLongScoreHolder
Reward a match by theConstraintWeight
multiplied with the weightMultiplier for all score levels.- Specified by:
reward
in interfaceHardSoftLongScoreHolder
- Parameters:
kcontext
- never null, the magic variable in DRLweightMultiplier
- at least 0
-
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long softWeightMultiplier)
Description copied from interface:HardSoftLongScoreHolder
Reward a match by theConstraintWeight
multiplied with the specific weightMultiplier per score level. Slower thanHardSoftLongScoreHolder.reward(RuleContext, long)
.- Specified by:
reward
in interfaceHardSoftLongScoreHolder
- 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:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Overrides:
impactScore
in classAbstractScoreHolder<HardSoftLongScore>
- Parameters:
kcontext
- never null
-
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier)
Description copied from class:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Specified by:
impactScore
in classAbstractScoreHolder<HardSoftLongScore>
- Parameters:
kcontext
- never nullweightMultiplier
- any
-
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)
Description copied from class:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Specified by:
impactScore
in interfaceHardSoftLongScoreHolder
- Specified by:
impactScore
in classAbstractScoreHolder<HardSoftLongScore>
- Parameters:
kcontext
- never nullweightMultiplier
- any
-
impactScore
public void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, BigDecimal weightMultiplier)
Description copied from class:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Specified by:
impactScore
in classAbstractScoreHolder<HardSoftLongScore>
- Parameters:
kcontext
- never nullweightMultiplier
- any
-
addHardConstraintMatch
public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight)
- Specified by:
addHardConstraintMatch
in interfaceHardSoftLongScoreHolder
- 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, long softWeight)
- Specified by:
addSoftConstraintMatch
in interfaceHardSoftLongScoreHolder
- 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, long hardWeight, long softWeight)
- Specified by:
addMultiConstraintMatch
in interfaceHardSoftLongScoreHolder
- Parameters:
kcontext
- never null, the magic variable in DRLsoftWeight
- higher is better, negative for a penalty, positive for a reward
-
extractScore
public HardSoftLongScore extractScore(int initScore)
- Specified by:
extractScore
in classAbstractScoreHolder<HardSoftLongScore>
-
-