mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
replace_proof_converter.h
|
|
|
|
Abstract:
|
|
|
|
Proof converter to replace asserted leaves by proofs.
|
|
|
|
Given a proof P with occurrences of [asserted fml]
|
|
Replace [asserted fml] by proofs whose conclusions are fml.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2012-9-16
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef REPLACE_PROOF_CONVERTER_H_
|
|
#define REPLACE_PROOF_CONVERTER_H_
|
|
|
|
#include "proof_converter.h"
|
|
|
|
class replace_proof_converter : public proof_converter {
|
|
ast_manager& m;
|
|
proof_ref_vector m_proofs;
|
|
public:
|
|
|
|
replace_proof_converter(ast_manager& _m): m(_m), m_proofs(m) {}
|
|
|
|
virtual ~replace_proof_converter() {}
|
|
|
|
virtual void operator()(ast_manager & _m, unsigned num_source, proof * const * source, proof_ref & result);
|
|
|
|
virtual proof_converter * translate(ast_translation & translator);
|
|
|
|
void insert(proof* p) { m_proofs.push_back(p); }
|
|
|
|
ast_manager& get_manager() { return m; }
|
|
|
|
// run the replacements the inverse direction.
|
|
void invert() { m_proofs.reverse(); }
|
|
|
|
};
|
|
|
|
#endif
|