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:
parent
fa93bc419d
commit
ef6339f14c
2 changed files with 4 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue