3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-08 20:21:23 +00:00

add backtrack level to cuber interface

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-08 21:44:21 -08:00
parent 0a9946578b
commit 75b8d10f48
22 changed files with 53 additions and 40 deletions

View file

@ -226,7 +226,7 @@ namespace smt {
return expr_ref(m.mk_true(), m);
}
virtual expr_ref cube() {
virtual expr_ref cube(unsigned) {
ast_manager& m = get_manager();
return expr_ref(m.mk_true(), m);
}