mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix #7101
This commit is contained in:
parent
2b683941b7
commit
908aaa06f7
1 changed files with 7 additions and 5 deletions
|
@ -172,18 +172,20 @@ struct evaluator_cfg : public default_rewriter_cfg {
|
|||
|
||||
struct has_redex {};
|
||||
struct has_redex_finder {
|
||||
array_util& au;
|
||||
has_redex_finder(array_util& au): au(au) {}
|
||||
evaluator_cfg& ev;
|
||||
has_redex_finder(evaluator_cfg& ev): ev(ev) {}
|
||||
void operator()(var* v) {}
|
||||
void operator()(quantifier* q) {}
|
||||
void operator()(app* a) {
|
||||
if (au.is_as_array(a->get_decl()))
|
||||
if (ev.m_ar.is_as_array(a->get_decl()))
|
||||
throw has_redex();
|
||||
if (au.get_manager().is_eq(a))
|
||||
if (ev.m_ar.get_manager().is_eq(a))
|
||||
throw has_redex();
|
||||
if (ev.m_fpau.is_fp(a))
|
||||
throw has_redex();
|
||||
}
|
||||
};
|
||||
has_redex_finder ha(m_ar);
|
||||
has_redex_finder ha(*this);
|
||||
try {
|
||||
for_each_expr(ha, e);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue