(double[][] simp, String heading)
| 833 | |
| 834 | // Display simplex [Iteration: s0(p1, p2....), s1(),....] in Log window |
| 835 | private synchronized void showSimplex(double[][] simp, String heading) { |
| 836 | IJ.log("Minimizer: "+heading); |
| 837 | for (int i = 0; i < numVertices; i++) |
| 838 | showVertex(simp[i], null); |
| 839 | } |
| 840 | private synchronized void showVertex(double[] vertex, String heading) { |
| 841 | if (heading != null) |
| 842 | IJ.log(heading); |
no test coverage detected