Uses of Class
db.RDB

Packages that use RDB
db Provides an interfaces to the RDBMS. 
infer Provides MLN inference algorithms. 
mln This package builds the data structure of MLN. 
util Miscellaneous utilities. 
 

Uses of RDB in db
 

Methods in db that return RDB
static RDB RDB.getRDBbyConfig()
          Attempt to establish the connection as specified in the (deault) configuration.
 

Uses of RDB in infer
 

Fields in infer declared as RDB
protected  RDB Infer.db
          The DB.
static RDB Component.db
           
 

Methods in infer with parameters of type RDB
 void MRF.flushLowTruth(RDB db)
          Flush lowest-cost truth assignment to the database.
 void Infer.loadMLN(MarkovLogicNetwork mln, RDB adb, CommandOptions opt)
          Load the rules and data of the MLN program.
 void MRF.loadMRF(RDB db)
          Load the entire grounding result into memory as an MRF.
 

Constructors in infer with parameters of type RDB
MZone(RDB db, PartMap pmap, java.util.ArrayList<Component> comps)
          Construct a memory zone to hold a number of components.
MZone(RDB db, PartMap pmap, boolean wholeComps)
          Construct an initially empty memory zone.
MZone(RDB db, PartMap pmap, Component comp, java.util.ArrayList<Partition> parts)
          Construct a memory zone to hold a number of partitions in a certain component.
 

Uses of RDB in mln
 

Methods in mln that return RDB
 RDB MarkovLogicNetwork.getRDB()
          Returns the RDB used by this MLN.
 

Methods in mln with parameters of type RDB
 void ConjunctiveQuery.materialize(RDB db, java.lang.Boolean truth)
          Execute this conjunctive query.
 void Predicate.prepareDB(RDB adb)
          Initialize database objects for this predicate.
 void MarkovLogicNetwork.prepareDB(RDB adb)
          Prepare the database for each predicate and clause.
 void Clause.prepareForDB(RDB db)
          Initialize database objects for this clause.
 void Type.storeConstantList(RDB db)
          Store the list of constants in a DB table.
 java.lang.String Clause.toString(int ni, RDB db)
          Return the definition of clause instance.
 

Uses of RDB in util
 

Methods in util with parameters of type RDB
static int DebugMan.countTrueAtoms(RDB db)