3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 22:41:15 +00:00

Bugfix for theory_fpa construction and destruction.

This commit is contained in:
Christoph M. Wintersteiger 2015-11-09 13:54:28 +00:00
parent 689ed9fa12
commit 5995c753d3
2 changed files with 24 additions and 6 deletions

View file

@ -148,6 +148,7 @@ namespace smt {
obj_map<sort, func_decl*> m_wraps;
obj_map<sort, func_decl*> m_unwraps;
obj_map<expr, expr*> m_conversions;
bool m_is_initialized;
virtual final_check_status final_check_eh();
virtual bool internalize_atom(app * atom, bool gate_ctx);
@ -169,9 +170,11 @@ namespace smt {
virtual void finalize_model(model_generator & mg);
public:
theory_fpa(ast_manager& m);
theory_fpa(ast_manager & m);
virtual ~theory_fpa();
virtual void init(context * ctx);
virtual void display(std::ostream & out) const;
protected: