Uses of Class
weka.associations.tertius.Rule

Packages that use Rule
weka.associations   
weka.associations.tertius   
 

Uses of Rule in weka.associations
 

Methods in weka.associations with parameters of type Rule
private  boolean Tertius.canRefine(Rule rule)
          Test if it is worth refining a rule.
private  boolean Tertius.canCalculateOptimistic(Rule rule)
          Test if it is worth calculating the optimistic estimate of a rule.
private  boolean Tertius.canExplore(Rule rule)
          Test if a rule can be explored (if it is interesting for the results or for refining).
private  boolean Tertius.canStoreInNodes(Rule rule)
          Test if a rule can be stored in the agenda.
private  boolean Tertius.canCalculateConfirmation(Rule rule)
          Test if it is worth calculating the confirmation of a rule.
private  boolean Tertius.canStoreInResults(Rule rule)
          Test if a rule can be added to the results.
private  void Tertius.addResult(Rule rule)
          Add a rule in the appropriate place in the list of the results, according to the confirmation and number of counter-instances of the rule.
 

Uses of Rule in weka.associations.tertius
 

Methods in weka.associations.tertius that return Rule
private  Rule Rule.addTermToBody(Literal newLit)
          Add a literal to the body of the rule.
private  Rule Rule.addTermToHead(Literal newLit)
          Add a literal to the head of the rule.
 

Methods in weka.associations.tertius with parameters of type Rule
abstract  boolean LiteralSet.isIncludedIn(Rule otherRule)
          Test if this LiteralSet is included in a rule.
 boolean Rule.subsumes(Rule otherRule)
          Test if this rule subsumes another rule.
 boolean Rule.sameClauseAs(Rule otherRule)
          Test if this rule and another rule correspond to the same clause.
 boolean Rule.equivalentTo(Rule otherRule)
          Test if this rule is equivalent to another rule.
 boolean Body.isIncludedIn(Rule otherRule)
          Test if this Body is included in a rule.
 boolean Head.isIncludedIn(Rule otherRule)
          Test if this Head is included in a rule.