mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
This commit is contained in:
parent
1dedfe3164
commit
0b3a8522ac
1 changed files with 4 additions and 1 deletions
|
@ -3705,9 +3705,12 @@ namespace q {
|
||||||
SASSERT(tmp_tree != 0);
|
SASSERT(tmp_tree != 0);
|
||||||
SASSERT(!m_egraph.enodes_of(lbl).empty());
|
SASSERT(!m_egraph.enodes_of(lbl).empty());
|
||||||
m_interpreter.init(tmp_tree);
|
m_interpreter.init(tmp_tree);
|
||||||
for (enode * app : m_egraph.enodes_of(lbl))
|
auto& nodes = m_egraph.enodes_of(lbl);
|
||||||
|
for (unsigned i = 0; i < nodes.size(); ++i) {
|
||||||
|
enode* app = nodes[i];
|
||||||
if (ctx.is_relevant(app))
|
if (ctx.is_relevant(app))
|
||||||
m_interpreter.execute_core(tmp_tree, app);
|
m_interpreter.execute_core(tmp_tree, app);
|
||||||
|
}
|
||||||
m_tmp_trees[lbl_id] = nullptr;
|
m_tmp_trees[lbl_id] = nullptr;
|
||||||
dealloc(tmp_tree);
|
dealloc(tmp_tree);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue