mirror of
https://github.com/Z3Prover/z3
synced 2025-09-04 00:58:07 +00:00
add missing tactic descriptions, add rewrite for tamagochi
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
95cb06d8cf
commit
fcea32344e
19 changed files with 147 additions and 49 deletions
|
@ -193,6 +193,16 @@ public:
|
|||
|
||||
bv_util & get_util() { return m_util; }
|
||||
|
||||
// Return true if t is of the form
|
||||
// (= t #b0)
|
||||
// (= t #b1)
|
||||
// (= #b0 t)
|
||||
// (= #b1 t)
|
||||
bool is_eq_bit(expr* t, expr*& x, unsigned& val);
|
||||
|
||||
// return true if t is #b0 or #b1
|
||||
bool is_bit(expr* t, unsigned& val);
|
||||
|
||||
#define MK_BV_BINARY(OP) \
|
||||
expr_ref OP(expr* a, expr* b) { \
|
||||
expr_ref result(m); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue