| 122 | } |
| 123 | |
| 124 | void NSLDiffTest::testSixth_order1() { |
| 125 | double ydata[] = {1, 8, 64, 512, 4096, 32768, 262144}; |
| 126 | |
| 127 | int status = nsl_diff_sixth_deriv(dxdata, ydata, N, 1); |
| 128 | QCOMPARE(status, 0); |
| 129 | for (double d : ydata) |
| 130 | QCOMPARE(d + 1., 1.); |
| 131 | } |
| 132 | |
| 133 | // ############################################################################## |
| 134 | // ################# performance |
nothing calls this directly
no test coverage detected