mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +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) {
|
||||
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;
|
||||
}
|
||||
bool has_unary_pattern = false;
|
||||
|
|
Loading…
Reference in a new issue