(Context ctx, Tactic t, Goal g, Status sat)
| 191 | } |
| 192 | |
| 193 | void solveTactical(Context ctx, Tactic t, Goal g, Status sat) |
| 194 | throws TestFailedException |
| 195 | { |
| 196 | Solver s = ctx.mkSolver(t); |
| 197 | System.out.printf("%nTactical solver: %s%n", s); |
| 198 | |
| 199 | s.add(g.getFormulas()); |
| 200 | System.out.printf("Solver: %s%n", s); |
| 201 | |
| 202 | if (s.check() != sat) |
| 203 | throw new TestFailedException(); |
| 204 | } |
| 205 | |
| 206 | ApplyResult applyTactic(Context ctx, Tactic t, Goal g) |
| 207 | { |
nothing calls this directly
no test coverage detected