mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
dom_simplify_tactic: micro opt
This commit is contained in:
parent
f1eb53761a
commit
110d558ee4
1 changed files with 2 additions and 3 deletions
|
@ -225,9 +225,8 @@ expr_ref dom_simplify_tactic::simplify(expr * e0) {
|
|||
}
|
||||
else {
|
||||
expr_dominators::tree_t const& t = m_dominators.get_tree();
|
||||
if (t.contains(e)) {
|
||||
ptr_vector<expr> const& children = t[e];
|
||||
for (expr * child : children) {
|
||||
if (auto children = t.find_core(e)) {
|
||||
for (expr * child : children->get_data().m_value) {
|
||||
simplify(child);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue