mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 21:01:22 +00:00
Bugfix for bouned_int2bv_solver
This commit is contained in:
parent
02e1bae9cb
commit
f1412d3f32
1 changed files with 4 additions and 0 deletions
|
@ -294,6 +294,10 @@ private:
|
||||||
for (unsigned i = 0; i < m_assertions.size(); ++i) {
|
for (unsigned i = 0; i < m_assertions.size(); ++i) {
|
||||||
sub(m_assertions[i].get(), fml1);
|
sub(m_assertions[i].get(), fml1);
|
||||||
m_rewriter(fml1, fml2, proof);
|
m_rewriter(fml1, fml2, proof);
|
||||||
|
if (m.canceled()) {
|
||||||
|
m_rewriter.reset();
|
||||||
|
return;
|
||||||
|
}
|
||||||
m_solver->assert_expr(fml2);
|
m_solver->assert_expr(fml2);
|
||||||
TRACE("int2bv", tout << fml2 << "\n";);
|
TRACE("int2bv", tout << fml2 << "\n";);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue