summaryrefslogtreecommitdiff
path: root/src/proof/uf_proof.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/uf_proof.h')
-rw-r--r--src/proof/uf_proof.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/proof/uf_proof.h b/src/proof/uf_proof.h
index ca8b3f90e..16755e528 100644
--- a/src/proof/uf_proof.h
+++ b/src/proof/uf_proof.h
@@ -65,16 +65,21 @@ protected:
theory::TheoryId getTheoryId() override;
public:
- UFProof(theory::uf::TheoryUF* uf, TheoryProofEngine* proofEngine);
+ UFProof(Environment* env,
+ theory::uf::TheoryUF* uf,
+ TheoryProofEngine* proofEngine);
void registerTerm(Expr term) override;
};
class LFSCUFProof : public UFProof {
public:
- LFSCUFProof(theory::uf::TheoryUF* uf, TheoryProofEngine* proofEngine)
- : UFProof(uf, proofEngine)
- {}
+ LFSCUFProof(Environment* env,
+ theory::uf::TheoryUF* uf,
+ TheoryProofEngine* proofEngine)
+ : UFProof(env, uf, proofEngine)
+ {
+ }
void printOwnedTerm(Expr term,
std::ostream& os,
const ProofLetMap& map) override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback