mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
fpa2bv tactic bugfix
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
0ceb67ae33
commit
b8c373bbce
1 changed files with 2 additions and 2 deletions
|
@ -96,8 +96,8 @@ class fpa2bv_tactic : public tactic {
|
|||
g->inc_depth();
|
||||
result.push_back(g.get());
|
||||
|
||||
for (unsigned i = 0; i < m_conv.extra_assertions.size(); i++)
|
||||
result.back()->assert_expr(m_conv.extra_assertions[i].get());
|
||||
for (unsigned i = 0; i < m_conv.m_extra_assertions.size(); i++)
|
||||
result.back()->assert_expr(m_conv.m_extra_assertions[i].get());
|
||||
|
||||
SASSERT(g->is_well_sorted());
|
||||
TRACE("fpa2bv", tout << "AFTER: " << std::endl; g->display(tout);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue