Class HardSoftLongScoreHolderImpl

    • Field Detail

      • matchExecutorByNumberMap

        protected final Map<org.kie.api.definition.rule.Rule,​BiConsumer<org.kie.api.runtime.rule.RuleContext,​Long>> matchExecutorByNumberMap
      • hardScore

        protected long hardScore
      • softScore

        protected long softScore
    • Constructor Detail

      • HardSoftLongScoreHolderImpl

        public HardSoftLongScoreHolderImpl​(boolean constraintMatchEnabled)
    • Method Detail

      • getHardScore

        public long getHardScore()
      • getSoftScore

        public long getSoftScore()
      • penalize

        public void penalize​(org.kie.api.runtime.rule.RuleContext kcontext,
                             long weightMultiplier)
        Description copied from interface: HardSoftLongScoreHolder
        Penalize a match by the ConstraintWeight negated and multiplied with the weightMultiplier for all score levels.
        Specified by:
        penalize in interface HardSoftLongScoreHolder
        Parameters:
        kcontext - never null, the magic variable in DRL
        weightMultiplier - at least 0
      • reward

        public void reward​(org.kie.api.runtime.rule.RuleContext kcontext,
                           long weightMultiplier)
        Description copied from interface: HardSoftLongScoreHolder
        Reward a match by the ConstraintWeight multiplied with the weightMultiplier for all score levels.
        Specified by:
        reward in interface HardSoftLongScoreHolder
        Parameters:
        kcontext - never null, the magic variable in DRL
        weightMultiplier - at least 0
      • 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 class AbstractScoreHolder<HardSoftLongScore>
        Parameters:
        kcontext - never null
        weightMultiplier - any
      • addHardConstraintMatch

        public void addHardConstraintMatch​(org.kie.api.runtime.rule.RuleContext kcontext,
                                           long hardWeight)
        Specified by:
        addHardConstraintMatch in interface HardSoftLongScoreHolder
        Parameters:
        kcontext - never null, the magic variable in DRL
        hardWeight - higher is better, negative for a penalty, positive for a reward
      • addSoftConstraintMatch

        public void addSoftConstraintMatch​(org.kie.api.runtime.rule.RuleContext kcontext,
                                           long softWeight)
        Specified by:
        addSoftConstraintMatch in interface HardSoftLongScoreHolder
        Parameters:
        kcontext - never null, the magic variable in DRL
        softWeight - higher is better, negative for a penalty, positive for a reward
      • addMultiConstraintMatch

        public void addMultiConstraintMatch​(org.kie.api.runtime.rule.RuleContext kcontext,
                                            long hardWeight,
                                            long softWeight)
        Specified by:
        addMultiConstraintMatch in interface HardSoftLongScoreHolder
        Parameters:
        kcontext - never null, the magic variable in DRL
        softWeight - higher is better, negative for a penalty, positive for a reward