3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix build issues

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-01 12:00:03 -07:00
parent fa93bc419d
commit ef6339f14c
2 changed files with 4 additions and 4 deletions

View file

@ -1830,8 +1830,9 @@ namespace smt {
ast_manager& m = get_manager();
smt_params fp;
kernel k(m, fp);
expr_ref notB(m.mk_not(B), m);
k.assert_expr(A);
k.assert_expr(m.mk_not(B));
k.assert_expr(notB);
lbool is_sat = k.check();
validating = false;
std::cout << is_sat << "\n";