3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 02:10:23 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-10-22 04:59:51 -07:00
parent cd9c752834
commit 66f2a7636b
3 changed files with 12 additions and 21 deletions

View file

@ -149,13 +149,11 @@ namespace smt {
void new_diseq_eh(theory_var v1, theory_var v2) override {}
void add_theory_assumptions(expr_ref_vector & assumptions) override;
void set_max_depth(unsigned n) { SASSERT(n>0); m_max_depth = n; }
unsigned get_max_depth();
public:
theory_recfun(ast_manager & m);
~theory_recfun() override;
theory * mk_fresh(context * new_ctx) override;
void init_search_eh() override { m_max_depth = 2; }
void display(std::ostream & out) const override;
void collect_statistics(::statistics & st) const override;
};