mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
re-enable ematching on recursive function definitions, disabling ematching breaks regressions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
650a719298
commit
725e79e9eb
|
@ -481,7 +481,7 @@ namespace smt {
|
||||||
if (!m_fparams->m_ematching) {
|
if (!m_fparams->m_ematching) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (m_context->get_manager().is_rec_fun_def(q) && mbqi_enabled(q)) {
|
if (false && m_context->get_manager().is_rec_fun_def(q) && mbqi_enabled(q)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
bool has_unary_pattern = false;
|
bool has_unary_pattern = false;
|
||||||
|
|
Loading…
Reference in a new issue