Gets or sets the evidence (case data, e.g. row in a database) used in a query.

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

Syntax

C#
public IEvidence Evidence { get; set; }
Visual Basic (Declaration)
Public Property Evidence As IEvidence
Visual C++
public:
virtual property IEvidence^ Evidence {
	IEvidence^ get () sealed;
	void set (IEvidence^ value) sealed;
}

Implements

IInference..::.Evidence

Remarks

The distributions are only recalculated when Query(IQueryOptions, IQueryOutput) is called, not each time evidence is changed.

See Also