Uses of Class
mln.Clause

Packages that use Clause
infer Provides MLN inference algorithms. 
mln This package builds the data structure of MLN. 
parser Provides parsers for MLN input, config files, and command line options. 
 

Uses of Clause in infer
 

Methods in infer with parameters of type Clause
 int Stats.ClauseCostComparator.compare(Clause x, Clause y)
           
 

Uses of Clause in mln
 

Methods in mln that return Clause
 Clause MarkovLogicNetwork.getClauseById(int id)
          Get clause object by integer ID.
 Clause Clause.normalize()
          Return a normalized version of this clause.
 

Methods in mln that return types with arguments of type Clause
 java.util.ArrayList<Clause> MarkovLogicNetwork.getAllNormalizedClauses()
          Return all normalized clauses.
 java.util.ArrayList<Clause> MarkovLogicNetwork.getAllUnnormalizedClauses()
          Return all unnormalized clauses as read from the input file.
 java.util.HashSet<Clause> Predicate.getRelatedClauses()
          Return clauses referencing this predicate.
 java.util.HashSet<Clause> MarkovLogicNetwork.getRelevantClauses()
          Returns the set of relevant clauses.
 

Methods in mln with parameters of type Clause
 void Clause.absorb(Clause c)
          "Absorb" another clause of the same pattern into this clause.
 void Predicate.addRelatedClause(Clause c)
          Register a clause referencing this predicate
 void MarkovLogicNetwork.registerClause(Clause c)
          Registers a new, unnormalized clause.
 void MarkovLogicNetwork.setClauseAsRelevant(Clause c)
          Marks a clause as relevant.
 

Uses of Clause in parser
 

Fields in parser declared as Clause
 Clause MLNParser.softRule_return.c
           
 Clause MLNParser.hardRule_return.c
           
 Clause MLNParser.foclause_return.c