mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
Added bit2bool to the API (#5992)
* Fixed registering expressions in push/pop * Reused existing function * Reverted reusing can_propagate * Added decide-callback to user-propagator * Refactoring * Fixed index * Added bit2bool to the API Fixed bug in user-propagator's decide callback * Fixed typo
This commit is contained in:
parent
0dd0fd26d4
commit
81189d6fdd
5 changed files with 58 additions and 31 deletions
|
@ -102,6 +102,7 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \
|
|||
MK_BV_PUNARY(Z3_mk_sign_ext, OP_SIGN_EXT);
|
||||
MK_BV_PUNARY(Z3_mk_zero_ext, OP_ZERO_EXT);
|
||||
MK_BV_PUNARY(Z3_mk_repeat, OP_REPEAT);
|
||||
MK_BV_PUNARY(Z3_mk_bit2bool, OP_BIT2BOOL);
|
||||
MK_BV_PUNARY(Z3_mk_rotate_left, OP_ROTATE_LEFT);
|
||||
MK_BV_PUNARY(Z3_mk_rotate_right, OP_ROTATE_RIGHT);
|
||||
MK_BV_PUNARY(Z3_mk_int2bv, OP_INT2BV);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue