Package com.bayesserver.inference
Interface QueryLifecycleBegin
-
- All Known Implementing Classes:
LikelihoodSamplingQueryLifecycleBegin,LoopyBeliefQueryLifecycleBegin,QueryLifecycleBeginBase,RelevanceTreeQueryLifecycleBegin,VariableEliminationQueryLifecycleBegin
public interface QueryLifecycleBeginContains information that is passed via theQueryLifecycleinterface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InferencegetInference()The current inference engine.QueryOptionsgetQueryOptions()The query options instance being used in the query.
-
-
-
Method Detail
-
getQueryOptions
QueryOptions getQueryOptions()
The query options instance being used in the query. This can be modified by a class that implementsQueryLifecycle.
-
getInference
Inference getInference()
The current inference engine. Note that some algorithms may use a copy of the original network.
-
-