Uses of Class
mln.MarkovLogicNetwork

Packages that use MarkovLogicNetwork
grounding Provides facilities for grounding MLNs, including KBMC, SQL-based grounding, and MRF partitioning. 
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 MarkovLogicNetwork in grounding
 

Methods in grounding that return MarkovLogicNetwork
 MarkovLogicNetwork Grounding.getMLN()
          Get the MLN object used for grounding.
 

Constructors in grounding with parameters of type MarkovLogicNetwork
Grounding(MarkovLogicNetwork mln)
          Create a grounding worker for an MLN.
KBMC(MarkovLogicNetwork mln)
          Constructor of KBMC.
 

Uses of MarkovLogicNetwork in infer
 

Fields in infer declared as MarkovLogicNetwork
 MarkovLogicNetwork MRF.mln
          The MLN object.
protected  MarkovLogicNetwork Infer.mln
          The MLN.
 

Methods in infer with parameters of type MarkovLogicNetwork
 void Infer.loadMLN(MarkovLogicNetwork mln, RDB adb, CommandOptions opt)
          Load the rules and data of the MLN program.
 

Uses of MarkovLogicNetwork in mln
 

Constructors in mln with parameters of type MarkovLogicNetwork
Predicate(MarkovLogicNetwork mln, java.lang.String aname, boolean aClosedWorld)
          Constructor of Predicate.
 

Uses of MarkovLogicNetwork in parser
 

Constructors in parser with parameters of type MarkovLogicNetwork
InputParser(MarkovLogicNetwork amln)