MCPcopy Create free account
hub / github.com/WinVector/Logistic / NewtonReturn

Class NewtonReturn

src/com/winvector/opt/impl/Newton.java:57–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected