The interface for a Bayesian network inference algorithm, which is used to perform queries such as calculating posterior probabilities and log-likelihood values for a case.

Namespace:  BayesServer.Inference
Assembly:  BayesServer.Inference (in BayesServer.Inference.dll)
Version: 2.2.0.0 (2.2.0.0)

Syntax

C#
public interface IInference : IDisposable
Visual Basic (Declaration)
Public Interface IInference _
	Implements IDisposable
Visual C++
public interface class IInference : IDisposable

Remarks

For an example of a class that implements this interface see VariableEliminationInference.

See Also