public final class DMultiFunctionEval extends Object
DMultiFunction.| Modifier and Type | Field and Description |
|---|---|
boolean |
converged
Has the evaluation converged?
|
int |
iterations
How many iterations were performed during the evaluation?
|
double[] |
point
To which point has the evaluation settled?
|
double |
value
What is the function's value at
point? |
| Constructor and Description |
|---|
DMultiFunctionEval(double[] point,
double value)
Creates a new
DMultiFunctionEval instance from the given
arguments. |
DMultiFunctionEval(double[] point,
double value,
int iterations)
Creates a new
DMultiFunctionEval instance from the given
arguments. |
DMultiFunctionEval(double[] point,
double value,
int iterations,
boolean converged)
Creates a new
DMultiFunctionEval instance from the given
arguments. |
public final double[] point
public final double value
point?public final int iterations
public final boolean converged
public DMultiFunctionEval(double[] point,
double value,
int iterations,
boolean converged)
DMultiFunctionEval instance from the given
arguments.point - the point at which the evaluation has settledvalue - the function's value at pointiterations - the number of iterations that were performed during the
evaluationconverged - whether the evaluation has convergedpublic DMultiFunctionEval(double[] point,
double value,
int iterations)
DMultiFunctionEval instance from the given
arguments.point - the point at which the evaluation has settledvalue - the function's value at pointiterations - the number of iterations that were performed during the
evaluationpublic DMultiFunctionEval(double[] point,
double value)
DMultiFunctionEval instance from the given
arguments.point - the point at which the evaluation has settledvalue - the function's value at pointCopyright © 2022. All rights reserved.