Uses of Class
tuffy.mln.Clause

Packages that use Clause
tuffy.ground Provides facilities for grounding MLNs, including KBMC, SQL-based grounding, and MRF partitioning. 
tuffy.helper Misc functionalities to help develop MLN programs. 
tuffy.mln This package builds the data structure of MLN. 
tuffy.parse Provides parsers for MLN input, config files, and command line options. 
tuffy.ra Rich logic/relational constructs such as expressions and Datalog. 
 

Uses of Clause in tuffy.ground
 

Fields in tuffy.ground with type parameters of type Clause
 java.util.HashSet<Clause> KBMC.allowedClauses
           
 

Uses of Clause in tuffy.helper
 

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

Uses of Clause in tuffy.mln
 

Fields in tuffy.mln with type parameters of type Clause
private  java.util.HashSet<Clause> Predicate.iclauses
          Set of clauses referencing this predicate.
private  java.util.ArrayList<Clause> MarkovLogicNetwork.listClauses
          List of normalized clauses.
private  java.util.HashSet<Clause> MarkovLogicNetwork.relevantClauses
          List of clauses marked as relevant.
private  java.util.Hashtable<java.lang.String,Clause> MarkovLogicNetwork.sigMap
          Map from signature of clauses to Clause object.
private  java.util.HashMap<Clause,Clause> MarkovLogicNetwork.unnormal2normal
           
private  java.util.HashMap<Clause,Clause> MarkovLogicNetwork.unnormal2normal
           
 java.util.ArrayList<Clause> MarkovLogicNetwork.unnormalizedClauses
          List of unnormalized clauses.
 

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

Methods in tuffy.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 tuffy.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 tuffy.parse
 

Fields in tuffy.parse declared as Clause
 Clause MLNParser.softRule_return.c
           
 Clause MLNParser.hardRule_return.c
           
 Clause MLNParser.foclause_return.c
           
 

Uses of Clause in tuffy.ra
 

Fields in tuffy.ra declared as Clause
 Clause ConjunctiveQuery.sourceClause