3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

true is true, false is not true, it is false

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-11-19 09:37:23 -08:00
parent f21162960e
commit 5a825d7ac3
6 changed files with 17 additions and 21 deletions

View file

@ -83,7 +83,7 @@ extern "C" {
Z3_TRY;
LOG_Z3_algebraic_is_value(c, a);
RESET_ERROR_CODE();
return Z3_algebraic_is_value_core(c, a) ? true : false;
return Z3_algebraic_is_value_core(c, a);
Z3_CATCH_RETURN(false);
}
@ -283,7 +283,7 @@ extern "C" {
r = _am.IRAT_PRED(av, bv); \
} \
} \
return r ? true : false;
return r;
Z3_bool Z3_API Z3_algebraic_lt(Z3_context c, Z3_ast a, Z3_ast b) {