public class HardSoftDoubleScoreHolder extends AbstractScoreHolder<HardSoftDoubleScore>
HardSoftBigDecimalScoreHolder
instead.HardSoftDoubleScore
,
Serialized FormAbstractScoreHolder.ConstraintActivationUnMatchListener
Modifier and Type | Field and Description |
---|---|
protected double |
hardScore |
protected Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Double>> |
matchExecutorByNumberMap |
protected Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,HardSoftDoubleScore>> |
matchExecutorByScoreMap
Slower than
matchExecutorByNumberMap |
protected double |
softScore |
constraintMatchEnabled, constraintMatchTotalMap, indictmentMap, zeroScore
Constructor and Description |
---|
HardSoftDoubleScoreHolder(boolean constraintMatchEnabled) |
Modifier and Type | Method and Description |
---|---|
void |
addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext,
double hardWeight) |
void |
addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext,
double hardWeight,
double softWeight) |
void |
addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext,
double softWeight) |
void |
configureConstraintWeight(org.kie.api.definition.rule.Rule rule,
HardSoftDoubleScore constraintWeight)
Sets up a
ConstraintWeight from the ConstraintConfiguration during initialization. |
HardSoftDoubleScore |
extractScore(int initScore)
|
double |
getHardScore() |
double |
getSoftScore() |
void |
penalize(org.kie.api.runtime.rule.RuleContext kcontext)
Penalize a match by the
ConstraintWeight negated. |
void |
penalize(org.kie.api.runtime.rule.RuleContext kcontext,
double weightMultiplier)
Penalize a match by the
ConstraintWeight negated and multiplied with the weightMultiplier for all score levels. |
void |
penalize(org.kie.api.runtime.rule.RuleContext kcontext,
double hardWeightMultiplier,
double softWeightMultiplier)
Penalize a match by the
ConstraintWeight negated and multiplied with the specific weightMultiplier per score level. |
void |
reward(org.kie.api.runtime.rule.RuleContext kcontext)
Reward a match by the
ConstraintWeight . |
void |
reward(org.kie.api.runtime.rule.RuleContext kcontext,
double weightMultiplier)
Reward a match by the
ConstraintWeight multiplied with the weightMultiplier for all score levels. |
void |
reward(org.kie.api.runtime.rule.RuleContext kcontext,
double hardWeightMultiplier,
double softWeightMultiplier)
Reward a match by the
ConstraintWeight multiplied with the specific weightMultiplier per score level. |
extractJustificationList, getConstraintMatchTotals, getIndictmentMap, isConstraintMatchEnabled, registerConstraintMatch
protected final Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,Double>> matchExecutorByNumberMap
protected final Map<org.kie.api.definition.rule.Rule,BiConsumer<org.kie.api.runtime.rule.RuleContext,HardSoftDoubleScore>> matchExecutorByScoreMap
matchExecutorByNumberMap
protected double hardScore
protected double softScore
public HardSoftDoubleScoreHolder(boolean constraintMatchEnabled)
public double getHardScore()
public double getSoftScore()
public void configureConstraintWeight(org.kie.api.definition.rule.Rule rule, HardSoftDoubleScore constraintWeight)
ScoreHolder
ConstraintWeight
from the ConstraintConfiguration
during initialization.configureConstraintWeight
in interface ScoreHolder<HardSoftDoubleScore>
configureConstraintWeight
in class AbstractScoreHolder<HardSoftDoubleScore>
rule
- never nullconstraintWeight
- never null, with Score.getInitScore()
equal to 0.public void penalize(org.kie.api.runtime.rule.RuleContext kcontext)
ConstraintWeight
negated.kcontext
- never null, the magic variable in DRLpublic void penalize(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)
ConstraintWeight
negated and multiplied with the weightMultiplier for all score levels.kcontext
- never null, the magic variable in DRLweightMultiplier
- at least 0public void penalize(org.kie.api.runtime.rule.RuleContext kcontext, double hardWeightMultiplier, double softWeightMultiplier)
ConstraintWeight
negated and multiplied with the specific weightMultiplier per score level.
Slower than penalize(RuleContext, double)
.kcontext
- never null, the magic variable in DRLhardWeightMultiplier
- at least 0softWeightMultiplier
- at least 0public void reward(org.kie.api.runtime.rule.RuleContext kcontext)
ConstraintWeight
.kcontext
- never null, the magic variable in DRLpublic void reward(org.kie.api.runtime.rule.RuleContext kcontext, double weightMultiplier)
ConstraintWeight
multiplied with the weightMultiplier for all score levels.kcontext
- never null, the magic variable in DRLweightMultiplier
- at least 0public void reward(org.kie.api.runtime.rule.RuleContext kcontext, double hardWeightMultiplier, double softWeightMultiplier)
ConstraintWeight
multiplied with the specific weightMultiplier per score level.
Slower than reward(RuleContext, double)
.kcontext
- never null, the magic variable in DRLhardWeightMultiplier
- at least 0softWeightMultiplier
- at least 0public void addHardConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, double hardWeight)
kcontext
- never null, the magic variable in DRLhardWeight
- higher is better, negative for a penalty, positive for a rewardpublic void addSoftConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, double softWeight)
kcontext
- never null, the magic variable in DRLsoftWeight
- higher is better, negative for a penalty, positive for a rewardpublic void addMultiConstraintMatch(org.kie.api.runtime.rule.RuleContext kcontext, double hardWeight, double softWeight)
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 rewardpublic HardSoftDoubleScore extractScore(int initScore)
ScoreHolder
Score
, calculated by the KieSession
for DroolsScoreDirector
.
Should not be called directly, use ScoreDirector.calculateScore()
instead.
initScore
- <= 0
, managed by OptaPlanner, needed as a parameter in the Score
's creation
method, see Score.getInitScore()
Score
of the working PlanningSolution
Copyright © 2006–2018 JBoss by Red Hat. All rights reserved.