mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Remove usages of Z3_TRUE / Z3_FALSE.
Now that this is all using stdbool.h, we can just use true/false. For now, we leave the aliases in place in z3_api.h.
This commit is contained in:
parent
8b2450aba7
commit
56bbed173e
23 changed files with 188 additions and 189 deletions
|
@ -662,7 +662,7 @@ void test_equiv(Equivalence_params params, unsigned bvsize, bool is_signed) {
|
|||
// Z3_solver_assert(ctx, s, Z3_mk_eq(ctx, t2, Z3_mk_numeral(ctx, "1", bv)));
|
||||
// //TEST_NO_UNDERFLOW;
|
||||
// Z3_solver_assert(ctx, s, test_udfl);
|
||||
// ENSURE(Z3_check(ctx) == Z3_TRUE);
|
||||
// ENSURE(Z3_check(ctx) == true);
|
||||
// Z3_solver_pop(ctx, s, 1);
|
||||
//
|
||||
// Z3_del_config(cfg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue