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 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 Score<Score_>>
-
Field Summary
Modifier and TypeFieldDescriptionprotected int
protected final Map<org.kie.api.definition.rule.Rule,
AbstractScoreHolder.IntMatchExecutor> protected final Map<org.kie.api.definition.rule.Rule,
AbstractScoreHolder.ScoreMatchExecutor<HardSoftScore>> Slower thanmatchExecutorByNumberMap
protected int
Fields inherited from class org.optaplanner.constraint.drl.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addHardConstraintMatch
(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight) void
addMultiConstraintMatch
(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight, int softWeight) void
addSoftConstraintMatch
(org.kie.api.runtime.rule.RuleContext kcontext, int softWeight) void
configureConstraintWeight
(org.kie.api.definition.rule.Rule rule, HardSoftScore constraintWeight) extractScore
(int initScore) int
int
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, int 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, int hardWeightMultiplier, int 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, int weightMultiplier) Reward a match by theConstraintWeight
multiplied with the weightMultiplier for all score levels.void
reward
(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeightMultiplier, int 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 Details
-
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>> matchExecutorByScoreMapSlower thanmatchExecutorByNumberMap
-
hardScore
protected int hardScore -
softScore
protected int softScore
-
-
Constructor Details
-
HardSoftScoreHolderImpl
public HardSoftScoreHolderImpl(boolean constraintMatchEnabled)
-
-
Method Details
-
getHardScore
public int getHardScore() -
getSoftScore
public int getSoftScore() -
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftScore constraintWeight) - Overrides:
configureConstraintWeight
in classAbstractScoreHolder<HardSoftScore>
-
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<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:HardSoftScoreHolder
Penalize a match by theConstraintWeight
negated and multiplied with the weightMultiplier for all score levels.- Specified by:
penalize
in 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:HardSoftScoreHolder
Penalize a match by theConstraintWeight
negated and multiplied with the specific weightMultiplier per score level. Slower thanHardSoftScoreHolder.penalize(RuleContext, int)
.- Specified by:
penalize
in 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:ScoreHolder
Reward a match by theConstraintWeight
.- Specified by:
reward
in 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:HardSoftScoreHolder
Reward a match by theConstraintWeight
multiplied with the weightMultiplier for all score levels.- Specified by:
reward
in 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:HardSoftScoreHolder
Reward a match by theConstraintWeight
multiplied with the specific weightMultiplier per score level. Slower thanHardSoftScoreHolder.reward(RuleContext, int)
.- Specified by:
reward
in 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:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Overrides:
impactScore
in classAbstractScoreHolder<HardSoftScore>
- 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 interfaceHardSoftScoreHolder
- Specified by:
impactScore
in classAbstractScoreHolder<HardSoftScore>
- 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 classAbstractScoreHolder<HardSoftScore>
- Parameters:
kcontext
- never nullweightMultiplier
- any
-
impactScore
Description copied from class:AbstractScoreHolder
For internal use only, use penalize() or reward() instead.- Specified by:
impactScore
in classAbstractScoreHolder<HardSoftScore>
- Parameters:
kcontext
- never nullweightMultiplier
- any
-
addHardConstraintMatch
public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardWeight) - Specified by:
addHardConstraintMatch
in 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:
addSoftConstraintMatch
in 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:
addMultiConstraintMatch
in 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
- Specified by:
extractScore
in classAbstractScoreHolder<HardSoftScore>
-