Interface BendableLongScoreHolder
-
- All Superinterfaces:
ScoreHolder<BendableLongScore>
- All Known Implementing Classes:
BendableLongScoreHolderImpl
public interface BendableLongScoreHolder extends ScoreHolder<BendableLongScore>
- See Also:
BendableLongScore
-
-
Method Summary
All Methods Instance Methods Abstract 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)intgetHardLevelsSize()intgetSoftLevelsSize()voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)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, 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 interface org.optaplanner.core.api.score.holder.ScoreHolder
penalize, reward
-
-
-
-
Method Detail
-
getHardLevelsSize
int getHardLevelsSize()
-
getSoftLevelsSize
int getSoftLevelsSize()
-
penalize
void penalize(org.kie.api.runtime.rule.RuleContext kcontext, long 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
void penalize(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. Slower thanpenalize(RuleContext, long).- Parameters:
kcontext- never null, the magic variable in DRLhardWeightsMultiplier- elements at least 0softWeightsMultiplier- elements at least 0
-
reward
void reward(org.kie.api.runtime.rule.RuleContext kcontext, long 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
void reward(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeightsMultiplier, long[] softWeightsMultiplier)Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level. Slower thanreward(RuleContext, long).- Parameters:
kcontext- never null, the magic variable in DRLhardWeightsMultiplier- elements at least 0softWeightsMultiplier- elements at least 0
-
impactScore
void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)
-
addHardConstraintMatch
void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int hardLevel, long 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
void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, int softLevel, long 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
void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long[] hardWeights, long[] softWeights)- Parameters:
kcontext- never null, the magic variable in DRLhardWeights- never null, array of lengthgetHardLevelsSize()softWeights- never null, array of lengthgetSoftLevelsSize()
-
-