mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
parent
6cd619d377
commit
8e26c2af17
|
@ -94,7 +94,10 @@ namespace polymorphism {
|
|||
t.push(value_trail(m_decl_qhead));
|
||||
for (; m_decl_qhead < num_decls; ++m_decl_qhead) {
|
||||
func_decl* p = m_decl_queue.get(m_decl_qhead);
|
||||
for (expr* e : m_occurs[m.poly_root(p)])
|
||||
func_decl* r = m.poly_root(p);
|
||||
if (!m_occurs.contains(r))
|
||||
continue;
|
||||
for (expr* e : m_occurs[r])
|
||||
instantiate(p, e, instances);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue