Gets or sets a value indicating whether the log-likelihood of a case should be calculated in a call to Query(IQueryOptions, IQueryOutput). If calculated the result can be obtained from LogLikelihood.

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

Syntax

C#
bool LogLikelihood { get; set; }
Visual Basic (Declaration)
Property LogLikelihood As Boolean
Visual C++
property bool LogLikelihood {
	bool get ();
	void set (bool value);
}

Field Value

true if the log-likelihood should be calculated; otherwise, false. Defaults to false.

Remarks

This should only be requested if required.

The natural log (base e) is calculated.

See Also