Package com.bayesserver.inference
Interface QueryLifecycleBegin
-
- All Known Implementing Classes:
LikelihoodSamplingQueryLifecycleBegin
,LoopyBeliefQueryLifecycleBegin
,QueryLifecycleBeginBase
,RelevanceTreeQueryLifecycleBegin
,VariableEliminationQueryLifecycleBegin
public interface QueryLifecycleBegin
Contains information that is passed via theQueryLifecycle
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Inference
getInference()
The current inference engine.QueryOptions
getQueryOptions()
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.
-
-