Package com.bayesserver.optimization
Interface OptimizerOutput
-
- All Known Implementing Classes:
GeneticOptimizerOutput
,GeneticSimplificationOutput
public interface OptimizerOutput
Contains output common to optimization algorithms.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Evidence
getEvidence()
The evidence required to produce the optimized objective value.double
getObjectiveValue()
The objective value.long
getQueryCount()
The number of queries to inference engines performed during optimization.List<OptimizationWarning>
getWarnings()
Contains any warnings generated by optimization algorithms.
-
-
-
Method Detail
-
getWarnings
List<OptimizationWarning> getWarnings()
Contains any warnings generated by optimization algorithms.
-
getObjectiveValue
double getObjectiveValue()
The objective value.
-
getEvidence
Evidence getEvidence()
The evidence required to produce the optimized objective value.
-
getQueryCount
long getQueryCount()
The number of queries to inference engines performed during optimization.
-
-