Uses of Class
weka.associations.tertius.Literal

Packages that use Literal
weka.associations.tertius   
 

Uses of Literal in weka.associations.tertius
 

Subclasses of Literal in weka.associations.tertius
 class AttributeValueLiteral
           
 class IndividualLiteral
           
 

Fields in weka.associations.tertius declared as Literal
private  Literal Literal.m_negation
           
private  Literal LiteralSet.m_lastLiteral
          Last literal added to this set.
 

Methods in weka.associations.tertius that return Literal
 Literal Literal.getNegation()
           
 Literal LiteralSet.getLastLiteral()
          Give the last literal added to this set.
 Literal Predicate.getLiteral(int index)
           
 

Methods in weka.associations.tertius with parameters of type Literal
 void Literal.setNegation(Literal negation)
           
 void LiteralSet.addElement(Literal element)
          Add a Literal to this set.
 boolean LiteralSet.contains(Literal lit)
          Test if this LiteralSet contains a given Literal.
abstract  boolean LiteralSet.canKeep(Instance instance, Literal newLit)
          Test if an instance can be kept as a counter-instance, given a new literal.
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.
 boolean Rule.bodyContains(Literal lit)
          Test if the body of the rule contains a literal.
 boolean Rule.headContains(Literal lit)
          Test if the head of the rule contains a literal.
 void Predicate.addLiteral(Literal lit)
           
 int Predicate.indexOf(Literal lit)
           
 boolean Body.canKeep(Instance instance, Literal newLit)
          Test if an instance can be kept as a counter-instance, if a new literal is added to this body.
 boolean Head.canKeep(Instance instance, Literal newLit)
          Test if an instance can be kept as a counter-instance, if a new literal is added to this head.