3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-08 23:23:23 +00:00

recursive function definitions; combine model-building functionality

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-03-03 07:59:03 -08:00
parent 6fa2338edc
commit 7c6540e18f
19 changed files with 129 additions and 173 deletions

View file

@ -38,7 +38,6 @@ Revision History:
#include"params.h"
class proto_model : public model_core {
ast_ref_vector m_asts;
plugin_manager<value_factory> m_factories;
user_sort_factory * m_user_sort_factory;
simplifier & m_simplifier;
@ -48,8 +47,6 @@ class proto_model : public model_core {
bool m_model_partial;
void reset_finterp();
expr * mk_some_interp_for(func_decl * d);
// Invariant: m_decls subset m_func_decls union m_const_decls union union m_value_decls
@ -63,7 +60,7 @@ class proto_model : public model_core {
public:
proto_model(ast_manager & m, simplifier & s, params_ref const & p = params_ref());
virtual ~proto_model();
virtual ~proto_model() {}
void register_factory(value_factory * f) { m_factories.register_plugin(f); }
@ -73,7 +70,7 @@ public:
value_factory * get_factory(family_id fid);
expr * get_some_value(sort * s);
virtual expr * get_some_value(sort * s);
bool get_some_values(sort * s, expr_ref & v1, expr_ref & v2);
@ -84,8 +81,7 @@ public:
//
// Primitives for building models
//
void register_decl(func_decl * d, expr * v);
void register_decl(func_decl * f, func_interp * fi, bool aux = false);
void register_aux_decl(func_decl * f, func_interp * fi);
void reregister_decl(func_decl * f, func_interp * new_fi, func_decl * f_aux);
void compress();
void cleanup();