mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 00:13:16 +00:00
parent
3efe311c25
commit
5497022f5c
2 changed files with 5 additions and 1 deletions
|
@ -848,7 +848,9 @@ namespace smt {
|
|||
return mk_var(e);
|
||||
}
|
||||
if (m_util.get_family_id() == n->get_family_id()) {
|
||||
found_unsupported_op(n);
|
||||
if (!m_util.is_div0(n) && !m_util.is_mod0(n) && !m_util.is_idiv0(n) && !m_util.is_rem0(n)) {
|
||||
found_unsupported_op(n);
|
||||
}
|
||||
if (ctx.e_internalized(n))
|
||||
return expr2var(n);
|
||||
for (unsigned i = 0; i < n->get_num_args(); ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue