Class GeneticSimplificationOutput
Contains the results from the genetic simplifcation algorithm.
Inheritance
System.Object
GeneticSimplificationOutput
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: BayesServer.Optimization.Genetic
Assembly: BayesServer.Optimization.dll
Syntax
public sealed class GeneticSimplificationOutput : IOptimizerOutput
Properties
Evidence
The evidence required to produce the optimized objective value.
Declaration
public IEvidence Evidence { get; }
Property Value
Type | Description |
---|---|
IEvidence |
ObjectiveValue
The objective value.
Declaration
public double ObjectiveValue { get; }
Property Value
Type | Description |
---|---|
System.Double |
QueryCount
Gets the number of call made to the inference engine(s) during optimization.
Declaration
public long QueryCount { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Warnings
Contains any warnings generated by optimization algorithms.
Declaration
public IList<OptimizationWarning> Warnings { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<OptimizationWarning> |