3
0
Fork 0
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:
Nikolaj Bjorner 2016-11-20 06:24:47 -08:00
parent 650a719298
commit 725e79e9eb

View file

@ -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;