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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/proof/uf_proof.h b/src/proof/uf_proof.h
index 3dc7d9b58..1b14bd15f 100644
--- a/src/proof/uf_proof.h
+++ b/src/proof/uf_proof.h
@@ -30,11 +30,12 @@
namespace CVC4 {
// proof object outputted by TheoryUF
-class ProofUF : public Proof {
+class ProofUF : public Proof
+{
public:
ProofUF(std::shared_ptr<theory::eq::EqProof> pf) : d_proof(pf) {}
- void toStream(std::ostream& out) override;
- void toStream(std::ostream& out, const ProofLetMap& map) override;
+ void toStream(std::ostream& out) const override;
+ void toStream(std::ostream& out, const ProofLetMap& map) const override;
private:
static void toStreamLFSC(std::ostream& out, TheoryProof* tp,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback