mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
change registration mode for relevant_eh
This commit is contained in:
parent
1706f77b9e
commit
f215b18e0e
8 changed files with 55 additions and 33 deletions
|
@ -739,6 +739,16 @@ namespace euf {
|
|||
}
|
||||
}
|
||||
|
||||
void solver::relevant_eh(euf::enode* n) {
|
||||
if (m_qsolver)
|
||||
m_qsolver->relevant_eh(n);
|
||||
for (auto thv : enode_th_vars(n)) {
|
||||
auto* th = m_id2solver.get(thv.get_id(), nullptr);
|
||||
if (th && th != m_qsolver)
|
||||
th->relevant_eh(n);
|
||||
}
|
||||
}
|
||||
|
||||
void solver::pre_simplify() {
|
||||
for (auto* e : m_solvers)
|
||||
e->pre_simplify();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue