MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / setMaximumIterations

Method setMaximumIterations

JSAT/src/jsat/math/optimization/BFGS.java:172–178  ·  view source on GitHub ↗
(int iterations)

Source from the content-addressed store, hash-verified

170 }
171
172 @Override
173 public void setMaximumIterations(int iterations)
174 {
175 if(iterations < 1)
176 throw new IllegalArgumentException("Iterations must be a positive value, not " + iterations);
177 this.maxIterations = iterations;
178 }
179
180 @Override
181 public int getMaximumIterations()

Callers 1

BFGSMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected