mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
fix #4865
This commit is contained in:
parent
746dd745ad
commit
4c1fcbaa62
|
@ -1759,6 +1759,8 @@ struct contains_underspecified_op_proc {
|
||||||
void operator()(app * n) {
|
void operator()(app * n) {
|
||||||
if (m_dt.is_accessor(n->get_decl()))
|
if (m_dt.is_accessor(n->get_decl()))
|
||||||
throw found();
|
throw found();
|
||||||
|
if (m_dt.is_update_field(n->get_decl()))
|
||||||
|
throw found();
|
||||||
if (n->get_family_id() == m_seq_id && m_seq.is_re(n))
|
if (n->get_family_id() == m_seq_id && m_seq.is_re(n))
|
||||||
throw found();
|
throw found();
|
||||||
if (m_arith.plugin().is_considered_uninterpreted(n->get_decl()))
|
if (m_arith.plugin().is_considered_uninterpreted(n->get_decl()))
|
||||||
|
|
Loading…
Reference in a new issue