()
| 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 |
nothing calls this directly
no test coverage detected