Evaluate the target function for the parameters given by 'vertex' The function value is stored into the last (extra) array element.
(double[] vertex)
| 800 | * The function value is stored into the last (extra) array element. |
| 801 | */ |
| 802 | private void evaluate(double[] vertex) { |
| 803 | vertex[numParams] = userFunction.userFunction(vertex, 0); |
| 804 | } |
| 805 | |
| 806 | /** Function value of a vertex after call to 'evaluate' |
| 807 | * (stored it as last array element) */ |
no test coverage detected