MCPcopy Create free account
hub / github.com/Z3Prover/z3 / next

Method next

src/api/java/Solver.java:455–463  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

453 }
454
455 @Override
456 public BoolExpr[] next() {
457 if (nextCube == null) {
458 throw new java.util.NoSuchElementException();
459 }
460 BoolExpr[] current = nextCube;
461 nextCube = computeNext();
462 return current;
463 }
464 };
465 }
466

Callers

nothing calls this directly

Calls 1

computeNextMethod · 0.95

Tested by

no test coverage detected