3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

fix #3603 - false positive, it is an irrational algebraic numeral

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-31 15:15:39 -07:00
parent a1f68a619d
commit ae447cfdad
2 changed files with 2 additions and 1 deletions

View file

@ -1795,6 +1795,8 @@ struct contains_underspecified_op_proc {
throw found();
if (m_arith.is_non_algebraic(n))
throw found();
if (m_arith.is_irrational_algebraic_numeral(n))
throw found();
if (n->get_family_id() == m_array_fid) {
decl_kind k = n->get_decl_kind();
if (k == OP_AS_ARRAY ||