(Context ctx, Expr<BoolSort> f, boolean useMBQI)
| 234 | } |
| 235 | |
| 236 | void prove(Context ctx, Expr<BoolSort> f, boolean useMBQI) throws TestFailedException |
| 237 | { |
| 238 | BoolExpr[] assumptions = new BoolExpr[0]; |
| 239 | prove(ctx, f, useMBQI, assumptions); |
| 240 | } |
| 241 | |
| 242 | @SafeVarargs |
| 243 | final void prove(Context ctx, Expr<BoolSort> f, boolean useMBQI, |
no test coverage detected