3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-26 17:52:11 -07:00
parent 0499b6b64a
commit c2e0491456
4 changed files with 22 additions and 11 deletions

View file

@ -10,6 +10,7 @@ z3_add_component(smt
expr_context_simplifier.cpp
fingerprints.cpp
mam.cpp
model_sweeper.cpp
old_interval.cpp
qi_queue.cpp
seq_axioms.cpp

View file

@ -22,6 +22,7 @@ Revision History:
#include "ast/for_each_expr.h"
#include "smt/theory_recfun.h"
#include "smt/params/smt_params_helper.hpp"
#include "smt/model_sweeper.h"
#define TRACEFN(x) TRACE("recfun", tout << x << '\n';)
@ -443,6 +444,7 @@ namespace smt {
final_check_status theory_recfun::final_check_eh() {
TRACEFN("final\n");
if (can_propagate()) {
generate_induction_lemmas(get_context());
propagate();
return FC_CONTINUE;
}