Package com.bayesserver.optimization
Interface OptimizerProgressInfo
-
- All Known Implementing Classes:
GeneticOptimizerProgressInfo
public interface OptimizerProgressInfo
Interface to provide progress information during optimization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Evidence
getEvidence()
Gets the evidence for the objective value.Double
getObjectiveValue()
Gets the optimized objective (target) value.long
getQueryCount()
Gets the number of calls made to inference engines during optimization.
-
-
-
Method Detail
-
getObjectiveValue
Double getObjectiveValue()
Gets the optimized objective (target) value. Value can potentially be null, if all solution are currently invalid (e.g. inconsistent evidence)
-
getQueryCount
long getQueryCount()
Gets the number of calls made to inference engines during optimization.
-
getEvidence
Evidence getEvidence()
Gets the evidence for the objective value.
-
-