mirror of
https://github.com/Z3Prover/z3
synced 2025-06-15 02:16:16 +00:00
fix #4865
This commit is contained in:
parent
746dd745ad
commit
4c1fcbaa62
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue