mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
This commit is contained in:
parent
d14f00d61a
commit
592b1d7f65
|
@ -158,7 +158,6 @@ namespace smt {
|
|||
|
||||
void mark_as_interpreted() {
|
||||
SASSERT(!m_interpreted);
|
||||
SASSERT(m_owner->get_num_args() == 0);
|
||||
SASSERT(m_class_size == 1);
|
||||
m_interpreted = true;
|
||||
}
|
||||
|
|
|
@ -974,7 +974,7 @@ namespace smt {
|
|||
}
|
||||
enode * e = enode::mk(m, m_region, m_app2enode, n, generation, suppress_args, merge_tf, m_scope_lvl, cgc_enabled, true);
|
||||
TRACE("mk_enode_detail", tout << "e.get_num_args() = " << e->get_num_args() << "\n";);
|
||||
if (n->get_num_args() == 0 && m.is_unique_value(n))
|
||||
if (m.is_unique_value(n))
|
||||
e->mark_as_interpreted();
|
||||
TRACE("mk_var_bug", tout << "mk_enode: " << id << "\n";);
|
||||
TRACE("generation", tout << "mk_enode: " << id << " " << generation << "\n";);
|
||||
|
|
Loading…
Reference in a new issue