mirror of
https://github.com/Z3Prover/z3
synced 2025-05-01 04:45:52 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fe43f8df8f
commit
65bc77d566
5 changed files with 149 additions and 10 deletions
|
@ -124,11 +124,20 @@ namespace bv {
|
|||
bool post_visit(expr* e, bool sign, bool root) override;
|
||||
unsigned get_bv_size(euf::enode* n);
|
||||
unsigned get_bv_size(theory_var v);
|
||||
theory_var get_var(euf::enode* n);
|
||||
euf::enode* get_arg(euf::enode* n, unsigned idx);
|
||||
inline theory_var get_arg_var(euf::enode* n, unsigned idx);
|
||||
void get_bits(theory_var v, expr_ref_vector& r);
|
||||
void get_bits(euf::enode* n, expr_ref_vector& r);
|
||||
void get_arg_bits(euf::enode* n, unsigned idx, expr_ref_vector& r);
|
||||
void get_arg_bits(app* n, unsigned idx, expr_ref_vector& r);
|
||||
euf::enode* mk_enode(app* n, ptr_vector<euf::enode> const& args);
|
||||
void fixed_var_eh(theory_var v);
|
||||
void register_true_false_bit(theory_var v, unsigned i);
|
||||
void add_bit(theory_var v, sat::literal lit);
|
||||
void init_bits(euf::enode * n, expr_ref_vector const & bits);
|
||||
void mk_bits(theory_var v);
|
||||
expr_ref mk_bit2bool(expr* b, unsigned idx);
|
||||
void internalize_num(app * n, theory_var v);
|
||||
void internalize_add(app * n);
|
||||
void internalize_sub(app * n);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue