mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
fpa2bv tactic bugfix
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
0ceb67ae33
commit
b8c373bbce
|
@ -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…
Reference in a new issue