Method
next
(long probeMax, long probeMin, int verbose)
Source from the content-addressed store, hash-verified
| 230 | } |
| 231 | |
| 232 | public synchronized String next(long probeMax, long probeMin, int verbose) { |
| 233 | this.probe = 0; |
| 234 | this.probeMax = probeMax; |
| 235 | this.probeMin = Math.min(probeMin, probeMax); |
| 236 | this.solution = null; |
| 237 | this.isRecovery = (this.verbose & OPTIMAL_SOLUTION) == (verbose & OPTIMAL_SOLUTION); |
| 238 | this.verbose = verbose; |
| 239 | return (verbose & OPTIMAL_SOLUTION) == 0 ? search() : searchOpt(); |
| 240 | } |
| 241 | |
| 242 | public static boolean isInited() { |
| 243 | return inited; |
Callers
nothing calls this directly
Tested by
no test coverage detected