Class BendableScoreHolder
- java.lang.Object
-
- org.optaplanner.core.api.score.holder.AbstractScoreHolder<BendableScore>
-
- org.optaplanner.core.api.score.buildin.bendable.BendableScoreHolder
-
- All Implemented Interfaces:
Serializable,ScoreHolder<BendableScore>
public class BendableScoreHolder extends AbstractScoreHolder<BendableScore>
- See Also:
BendableScore, Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
AbstractScoreHolder.ConstraintActivationUnMatchListener
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Integer>>matchExecutorByNumberMapprotected Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,BendableScore>>matchExecutorByScoreMapSlower thanmatchExecutorByNumberMap-
Fields inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap, zeroScore
-
-
Constructor Summary
Constructors Constructor Description BendableScoreHolder(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, int weight)voidaddMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int[] hardWeights, int[] softWeights)voidaddSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softLevel, int weight)voidconfigureConstraintWeight(org.kie.api.definition.rule.Rule rule, BendableScore constraintWeight)Sets up aConstraintWeightfrom theConstraintConfigurationduring initialization.BendableScoreextractScore(int initScore)intgetHardLevelsSize()intgetHardScore(int hardLevel)intgetSoftLevelsSize()intgetSoftScore(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.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[] hardWeightsMultiplier, int[] 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, int weightMultiplier)Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, int[] hardWeightsMultiplier, int[] softWeightsMultiplier)Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level.-
Methods inherited from class org.optaplanner.core.api.score.holder.AbstractScoreHolder
extractJustificationList, getConstraintMatchTotalMap, getConstraintMatchTotals, getIndictmentMap, impactScore, impactScore, isConstraintMatchEnabled, registerConstraintMatch, setJustificationListConverter
-
-
-
-
Field Detail
-
matchExecutorByNumberMap
protected final Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Integer>> matchExecutorByNumberMap
-
matchExecutorByScoreMap
protected final Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,BendableScore>> matchExecutorByScoreMap
Slower thanmatchExecutorByNumberMap
-
-
Method Detail
-
getHardLevelsSize
public int getHardLevelsSize()
-
getHardScore
public int getHardScore(int hardLevel)
-
getSoftLevelsSize
public int getSoftLevelsSize()
-
getSoftScore
public int getSoftScore(int softLevel)
-
configureConstraintWeight
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, BendableScore constraintWeight)Description copied from interface:ScoreHolderSets up aConstraintWeightfrom theConstraintConfigurationduring initialization.- Specified by:
configureConstraintWeightin interfaceScoreHolder<BendableScore>- Overrides:
configureConstraintWeightin classAbstractScoreHolder<BendableScore>- Parameters:
rule- never nullconstraintWeight- never null, withScore.getInitScore()equal to 0.
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Penalize a match by theConstraintWeightnegated.- Parameters:
kcontext- never null, the magic variable in DRL
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier)Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.- Parameters:
kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
-
penalize
public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, int[] hardWeightsMultiplier, int[] softWeightsMultiplier)Penalize a match by theConstraintWeightnegated and multiplied with the specific weightMultiplier per score level. Slower thanpenalize(RuleContext, int).- 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)
Reward a match by theConstraintWeight.- Parameters:
kcontext- never null, the magic variable in DRL
-
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, int weightMultiplier)Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.- Parameters:
kcontext- never null, the magic variable in DRLweightMultiplier- at least 0
-
reward
public void reward(org.kie.api.runtime.rule.RuleContext kcontext, int[] hardWeightsMultiplier, int[] softWeightsMultiplier)Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level. Slower thanreward(RuleContext, int).- 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<BendableScore>- 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.- Overrides:
impactScorein classAbstractScoreHolder<BendableScore>- Parameters:
kcontext- never nullweightMultiplier- any
-
addHardConstraintMatch
public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardLevel, int weight)- Parameters:
kcontext- never null, the magic variable in DRLhardLevel-0 <= hardLevel <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, int weight)- Parameters:
kcontext- never null, the magic variable in DRLsoftLevel-0 <= softLevel <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, int[] hardWeights, int[] softWeights)- Parameters:
kcontext- never null, the magic variable in DRLhardWeights- never null, array of lengthgetHardLevelsSize()softWeights- never null, array of lengthgetSoftLevelsSize()
-
extractScore
public BendableScore extractScore(int initScore)
Description copied from interface:ScoreHolderExtracts theScore, calculated by theKieSessionforDroolsScoreDirector.Should not be called directly, use
ScoreDirector.calculateScore()instead.- Parameters:
initScore-<= 0, managed by OptaPlanner, needed as a parameter in theScore's creation method, seeScore.getInitScore()- Returns:
- never null, the
Scoreof the workingPlanningSolution
-
-