mirror of
https://github.com/Z3Prover/z3
synced 2025-08-04 18:30:24 +00:00
fix pb rewriter
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f04e805fa4
commit
e7d43ed516
16 changed files with 215 additions and 129 deletions
|
@ -86,8 +86,9 @@ class bit_blaster_tactic : public tactic {
|
|||
|
||||
if (change && g->models_enabled()) {
|
||||
obj_map<func_decl, expr*> const2bits;
|
||||
m_rewriter->end_rewrite(const2bits);
|
||||
g->add(mk_bit_blaster_model_converter(m(), const2bits));
|
||||
ptr_vector<func_decl> newbits;
|
||||
m_rewriter->end_rewrite(const2bits, newbits);
|
||||
g->add(mk_bit_blaster_model_converter(m(), const2bits, newbits));
|
||||
}
|
||||
g->inc_depth();
|
||||
result.push_back(g.get());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue