Package com.bayesserver.optimization
Interface OptimizerProgressInfo
-
- All Known Implementing Classes:
GeneticOptimizerProgressInfo
public interface OptimizerProgressInfoInterface to provide progress information during optimization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvidencegetEvidence()Gets the evidence for the objective value.DoublegetObjectiveValue()Gets the optimized objective (target) value.longgetQueryCount()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.
-
-