MCPcopy Create free account
hub / github.com/MeigenChou/DCTimer-Android / next

Method next

app/src/main/java/cs/min2phase/Search.java:232–240  ·  view source on GitHub ↗
(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

Calls 2

searchMethod · 0.95
searchOptMethod · 0.95

Tested by

no test coverage detected