| 55 | } |
| 56 | |
| 57 | private static final class NewtonReturn { |
| 58 | @SuppressWarnings("unused") |
| 59 | public final StepStatus status; |
| 60 | public final double[] newX; |
| 61 | |
| 62 | public NewtonReturn(final StepStatus status, final double[] newX) { |
| 63 | this.status = status; |
| 64 | this.newX = newX; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | @SuppressWarnings("unused") |
| 69 | private NewtonReturn newtonStep(final int dim, final VEval lastEval) { |
nothing calls this directly
no outgoing calls
no test coverage detected