Class EuclideanNormEvaluator.Stats
- java.lang.Object
-
- org.apache.commons.numbers.examples.jmh.core.EuclideanNormEvaluator.Stats
-
- Enclosing class:
- EuclideanNormEvaluator
public static final class EuclideanNormEvaluator.Stats extends Object
Class containing evaluation statistics for a single computation method.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFailCount()
Get the number of failed computations, meaning the number of computations that overflowed or underflowed.double
getUlpErrorMax()
Get the ulp error maximum value.double
getUlpErrorMean()
Get the ulp error mean.double
getUlpErrorMin()
Get the ulp error minimum value.double
getUlpErrorStdDev()
Get the ulp error standard deviation.
-
-
-
Method Detail
-
getUlpErrorMean
public double getUlpErrorMean()
Get the ulp error mean.- Returns:
- ulp error mean
-
getUlpErrorStdDev
public double getUlpErrorStdDev()
Get the ulp error standard deviation.- Returns:
- ulp error standard deviation
-
getUlpErrorMin
public double getUlpErrorMin()
Get the ulp error minimum value.- Returns:
- ulp error minimum value
-
getUlpErrorMax
public double getUlpErrorMax()
Get the ulp error maximum value.- Returns:
- ulp error maximum value
-
getFailCount
public int getFailCount()
Get the number of failed computations, meaning the number of computations that overflowed or underflowed.- Returns:
- number of failed computations
-
-