mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
parent
0b856638e9
commit
426e4cc75c
65 changed files with 135 additions and 146 deletions
|
@ -207,10 +207,10 @@ class mbp::impl {
|
|||
continue;
|
||||
}
|
||||
m_visited.mark(e);
|
||||
if (m.is_bool(e) && !m.is_true(e) && !m.is_false(e) && !m.canceled()) {
|
||||
if (m.is_bool(e) && !m.is_true(e) && !m.is_false(e) && m.inc()) {
|
||||
expr_ref val = eval(e);
|
||||
TRACE("qe", tout << "found: " << mk_pp(e, m) << "\n";);
|
||||
if (m.canceled())
|
||||
if (!m.inc())
|
||||
continue;
|
||||
SASSERT(m.is_true(val) || m.is_false(val));
|
||||
if (!m_bool_visited.is_marked(e)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue