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

re-organize proof and model converters to be associated with goals instead of external

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-18 16:33:54 -08:00
parent 00f5308a0e
commit 4bbece6616
118 changed files with 617 additions and 1070 deletions

View file

@ -34,9 +34,9 @@ public:
virtual ~replace_proof_converter() {}
virtual void operator()(ast_manager & _m, unsigned num_source, proof * const * source, proof_ref & result);
proof_ref operator()(ast_manager & _m, unsigned num_source, proof * const * source) override;
virtual proof_converter * translate(ast_translation & translator);
proof_converter * translate(ast_translation & translator) override;
void insert(proof* p) { m_proofs.push_back(p); }
@ -45,7 +45,7 @@ public:
// run the replacements the inverse direction.
void invert() { m_proofs.reverse(); }
virtual void display(std::ostream & out) {}
void display(std::ostream & out) override {}
};