Function value of a vertex after call to 'evaluate' (stored it as last array element)
(double[] vertex)
| 806 | /** Function value of a vertex after call to 'evaluate' |
| 807 | * (stored it as last array element) */ |
| 808 | private double value(double[] vertex) { |
| 809 | return vertex[numParams]; |
| 810 | } |
| 811 | |
| 812 | /** Keep the newVertex: replace a given Vertex with it */ |
| 813 | void copyVertex(double[] newVertex, double[] vertex) { |
no outgoing calls
no test coverage detected