Interface HardMediumSoftLongScoreHolder
-
- All Superinterfaces:
ScoreHolder<HardMediumSoftLongScore>
@Deprecated(forRemoval=true) public interface HardMediumSoftLongScoreHolder extends ScoreHolder<HardMediumSoftLongScore>
Deprecated, for removal: This API element is subject to removal in a future version.Score DRL is deprecated and will be removed in a future major version of Timefold. See DRL to Constraint Streams migration recipe.- See Also:
HardMediumSoftLongScore
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight)Deprecated, for removal: This API element is subject to removal in a future version.voidaddMediumConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long mediumWeight)Deprecated, for removal: This API element is subject to removal in a future version.voidaddMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight, long mediumWeight, long softWeight)Deprecated, for removal: This API element is subject to removal in a future version.voidaddSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long softWeight)Deprecated, for removal: This API element is subject to removal in a future version.voidimpactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.Penalize a match by theConstraintWeightnegated and multiplied with the weightMultiplier for all score levels.voidpenalize(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long mediumWeightMultiplier, long softWeightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.Penalize a match by theConstraintWeightnegated and multiplied with the specific weightMultiplier per score level.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.Reward a match by theConstraintWeightmultiplied with the weightMultiplier for all score levels.voidreward(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeightMultiplier, long mediumWeightMultiplier, long softWeightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level.-
Methods inherited from interface ai.timefold.solver.core.api.score.holder.ScoreHolder
penalize, reward
-
-
-
-
Method Detail
-
penalize
void penalize(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.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 hardWeightMultiplier, long mediumWeightMultiplier, long softWeightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.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 DRLhardWeightMultiplier- at least 0mediumWeightMultiplier- at least 0softWeightMultiplier- at least 0
-
reward
void reward(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.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 hardWeightMultiplier, long mediumWeightMultiplier, long softWeightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.Reward a match by theConstraintWeightmultiplied with the specific weightMultiplier per score level. Slower thanreward(RuleContext, long).- Parameters:
kcontext- never null, the magic variable in DRLhardWeightMultiplier- at least 0mediumWeightMultiplier- at least 0softWeightMultiplier- at least 0
-
impactScore
void impactScore(org.kie.api.runtime.rule.RuleContext kcontext, long weightMultiplier)Deprecated, for removal: This API element is subject to removal in a future version.
-
addHardConstraintMatch
void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight)Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
kcontext- never null, the magic variable in DRLhardWeight- higher is better, negative for a penalty, positive for a reward
-
addMediumConstraintMatch
void addMediumConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long mediumWeight)Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
kcontext- never null, the magic variable in DRLmediumWeight- higher is better, negative for a penalty, positive for a reward
-
addSoftConstraintMatch
void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long softWeight)Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
kcontext- never null, the magic variable in DRLsoftWeight- higher is better, negative for a penalty, positive for a reward
-
addMultiConstraintMatch
void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, long hardWeight, long mediumWeight, long softWeight)Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
kcontext- never null, the magic variable in DRLhardWeight- higher is better, negative for a penalty, positive for a rewardmediumWeight- higher is better, negative for a penalty, positive for a rewardsoftWeight- higher is better, negative for a penalty, positive for a reward
-
-