Uses of Class
dstruct.FelixQuery

Packages that use FelixQuery
compiler This package contains a static analyzer for an MLN program. 
dstruct Basic data structure used by Felix. 
main   
operator Specialized operators used in Felix. 
optimizer Optimizer used to schedule Felix's execution plan. 
parser Provides parsers for MLN input, config files, and command line options. 
 

Uses of FelixQuery in compiler
 

Fields in compiler declared as FelixQuery
(package private)  FelixQuery StaticAnalyzer.fq
          Felix Query.
 

Constructors in compiler with parameters of type FelixQuery
StaticAnalyzer(FelixQuery _fq, parser.CommandOptions _opt)
          The constructor.
 

Uses of FelixQuery in dstruct
 

Fields in dstruct declared as FelixQuery
 FelixQuery StatOperator.fq
          Felix query.
 

Constructors in dstruct with parameters of type FelixQuery
StatOperator(FelixQuery _fq, java.util.HashSet<FelixPredicate> _goalPredicates, parser.CommandOptions _opt)
          the constructor.
 

Uses of FelixQuery in main
 

Fields in main declared as FelixQuery
(package private)  FelixQuery Felix.fq
          Felix's query, which consists of program, query and evidence.
 

Methods in main that return FelixQuery
 FelixQuery Felix.getFelixQuery()
          Return Felix's query.
 

Uses of FelixQuery in operator
 

Constructors in operator with parameters of type FelixQuery
COREFOperator(FelixQuery _fq, java.util.HashSet<FelixPredicate> _goalPredicates, parser.CommandOptions _opt)
          The constructor of COREFOperator.
CRFOperator(FelixQuery _fq, java.util.HashSet<FelixPredicate> _goalPredicates, parser.CommandOptions _opt)
          The constructor of CRFOperator.
LROperator(FelixQuery _fq, java.util.HashSet<FelixPredicate> _goalPredicates, parser.CommandOptions _opt)
          The constructor of LROperator.
TUFFYOperator(FelixQuery _fq, java.util.HashSet<FelixPredicate> _goalPredicates, parser.CommandOptions _opt)
          The constructor of TUFFYOperator.
 

Uses of FelixQuery in optimizer
 

Fields in optimizer declared as FelixQuery
(package private)  FelixQuery Scheduler.fq
          Felix query to be scheduled.
(package private)  FelixQuery OperatorSelector.fq
          FelixQuery which will be partitioned.
 

Constructors in optimizer with parameters of type FelixQuery
OperatorSelector(FelixQuery _fq, CostModel _cm, parser.CommandOptions _options)
          The constructor.
Scheduler(Felix _felix, FelixQuery _fq, parser.CommandOptions _options)
          The constructor.
 

Uses of FelixQuery in parser
 

Fields in parser declared as FelixQuery
(package private)  FelixQuery FELIXParser.ml
           
(package private)  FelixQuery FelixInputParser.mln
           
 

Constructors in parser with parameters of type FelixQuery
FelixInputParser(FelixQuery amln)