Package com.bayesserver.optimization
Class GeneticSimplificationOutput
- java.lang.Object
-
- com.bayesserver.optimization.GeneticSimplificationOutput
-
- All Implemented Interfaces:
OptimizerOutput
public final class GeneticSimplificationOutput extends Object implements OptimizerOutput
Contains the results from the genetic simplifcation algorithm.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Evidence
getEvidence()
The evidence required to produce the optimized objective value.double
getObjectiveValue()
The objective value.long
getQueryCount()
Gets the number of call made to the inference engine(s) during optimization.List<OptimizationWarning>
getWarnings()
Contains any warnings generated by optimization algorithms.
-
-
-
Method Detail
-
getWarnings
public List<OptimizationWarning> getWarnings()
Contains any warnings generated by optimization algorithms.- Specified by:
getWarnings
in interfaceOptimizerOutput
-
getObjectiveValue
public double getObjectiveValue()
The objective value.- Specified by:
getObjectiveValue
in interfaceOptimizerOutput
-
getEvidence
public Evidence getEvidence()
The evidence required to produce the optimized objective value.- Specified by:
getEvidence
in interfaceOptimizerOutput
-
getQueryCount
public long getQueryCount()
Gets the number of call made to the inference engine(s) during optimization.- Specified by:
getQueryCount
in interfaceOptimizerOutput
-
-