Class UnivariatePointValuePair
- java.lang.Object
-
- org.apache.commons.math3.optimization.univariate.UnivariatePointValuePair
-
- All Implemented Interfaces:
Serializable
@Deprecated public class UnivariatePointValuePair extends Object implements Serializable
Deprecated.As of 3.1 (to be removed in 4.0).This class holds a point and the value of an objective function at this point. This is a simple immutable container.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnivariatePointValuePair(double point, double value)
Deprecated.Build a point/objective function value pair.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description double
getPoint()
Deprecated.Get the point.double
getValue()
Deprecated.Get the value of the objective function.
-