Class EvaluateRule
- java.lang.Object
-
- org.tweetyproject.logics.cl.rules.RuleAdapter
-
- org.tweetyproject.logics.cl.rules.EvaluateRule
-
- All Implemented Interfaces:
RuleBasedCReasoner.Rule
public class EvaluateRule extends RuleAdapter
The evaluate rule tries to evaluate the kappa values by using logical constraints, therefore theKappaTermevaluate() methods are called. In fact this rule uses multiple rules, because evaluate() is implemented in a different way on the classes that implement theKappaTerminterface: - It evaluatesKappaMininstances by proofing if there is an element e which is evaluated and uses the value of this element if there is no greater or equal constraint on another element that is smaller as the value of element e. - TheKappaSuminstances are simply evaluated if every sub-element of the sum can be evaluated - TheKappaValueinstances are evaluated as soon as theirKappaMinmembers are evaluated.- Author:
- Tim Janus
-
-
Constructor Summary
Constructors Constructor Description EvaluateRule()
-
Method Summary
Modifier and Type Method Description booleanapply()Applies the rulevoidsetKappas(java.util.Collection<KappaValue> kappas)Sets the Collection ofKappaValuethat is used as data basis for the rule-
Methods inherited from class org.tweetyproject.logics.cl.rules.RuleAdapter
setConditonalStructure
-
-
-
-
Method Detail
-
setKappas
public void setKappas(java.util.Collection<KappaValue> kappas)
Description copied from interface:RuleBasedCReasoner.RuleSets the Collection ofKappaValuethat is used as data basis for the rule- Specified by:
setKappasin interfaceRuleBasedCReasoner.Rule- Overrides:
setKappasin classRuleAdapter- Parameters:
kappas- a set of kappa values
-
apply
public boolean apply()
Description copied from interface:RuleBasedCReasoner.RuleApplies the rule- Returns:
- true if a change occured, false otherwise
-
-