public class PointValuePair extends Pair<double[],Double> implements Serializable
PointVectorValuePair, 
MultivariateFunction, 
Serialized Form| Constructor and Description | 
|---|
PointValuePair(double[] point,
              double value)
Builds a point/objective function value pair. 
 | 
PointValuePair(double[] point,
              double value,
              boolean copyArray)
Builds a point/objective function value pair. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
double[] | 
getPoint()
Gets the point. 
 | 
double[] | 
getPointRef()
Gets a reference to the point. 
 | 
public PointValuePair(double[] point,
                      double value)
point - Point coordinates. This instance will store
 a copy of the array, not the array passed as argument.value - Value of the objective function at the point.public PointValuePair(double[] point,
                      double value,
                      boolean copyArray)
point - Point coordinates.value - Value of the objective function at the point.copyArray - if true, the input array will be copied,
 otherwise it will be referenced.Copyright © 2016-2022 CS GROUP. All rights reserved.