mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
fix build break
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1544105bd5
commit
6bf87083ef
|
@ -62,7 +62,7 @@ static void test(char const *ex) {
|
|||
app_ref_vector vars(m);
|
||||
expr_ref_vector lits(m);
|
||||
vars.push_back(m.mk_const(symbol("x"), a.mk_real()));
|
||||
qe::flatten_and(fml, lits);
|
||||
flatten_and(fml, lits);
|
||||
|
||||
smt::context ctx(m, params);
|
||||
ctx.assert_expr(fml);
|
||||
|
@ -89,7 +89,7 @@ static void test2(char const *ex) {
|
|||
vars.push_back(m.mk_const(symbol("x"), a.mk_real()));
|
||||
vars.push_back(m.mk_const(symbol("y"), a.mk_real()));
|
||||
vars.push_back(m.mk_const(symbol("z"), a.mk_real()));
|
||||
qe::flatten_and(fml, lits);
|
||||
flatten_and(fml, lits);
|
||||
|
||||
smt::context ctx(m, params);
|
||||
ctx.push();
|
||||
|
|
Loading…
Reference in a new issue