Package jline.solvers.mva
Class MVAResult
java.lang.Object
jline.solvers.SolverResult
jline.solvers.mva.MVAResult
Result container for Mean Value Analysis (MVA) solver computations.
MVAResult extends the base SolverResult to include MVA-specific performance metrics and intermediate computation results. This includes normalizing constants, iteration counts, and cache-specific probabilities.
- Since:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionCache hit probabilities [items x classes] (used by cache analyzers)intNumber of iterations performed by the MVA algorithm (used by runAnalyzer method)doubleLogarithm of the aggregate normalizing constantCache miss probabilities [items x classes] (used by cache analyzers) -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class jline.solvers.SolverResult
deepCopy, reset
-
Field Details
-
logNormConstAggr
public double logNormConstAggrLogarithm of the aggregate normalizing constant -
iter
public int iterNumber of iterations performed by the MVA algorithm (used by runAnalyzer method) -
hitProb
Cache hit probabilities [items x classes] (used by cache analyzers) -
missProb
Cache miss probabilities [items x classes] (used by cache analyzers)
-
-
Constructor Details
-
MVAResult
public MVAResult()
-