summaryrefslogtreecommitdiff
path: root/src/proof/bitvector_proof.h
diff options
context:
space:
mode:
authorAndres Notzli <andres.noetzli@gmail.com>2016-07-26 21:07:24 -0700
committerAndres Notzli <andres.noetzli@gmail.com>2016-07-26 21:07:24 -0700
commit490489a78beca486df5d4a0d8b7704e6235ca6fc (patch)
treeb0674f1f2ec1969d7422aa8ff21b4905a861a052 /src/proof/bitvector_proof.h
parentfc618e8c18a19012384ae1585fefc9ce11f55d71 (diff)
Fix warnings in src/proof
Fix warning due to `ProofLetCount` being defined as `struct` in `proof_utils.h` and `class` in `proof.h`. Fix warnings due to different number of arguments of `printConstantDisequalityProof()` and `printTheoryLemmaProof()` in subclasses.
Diffstat (limited to 'src/proof/bitvector_proof.h')
-rw-r--r--src/proof/bitvector_proof.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/bitvector_proof.h b/src/proof/bitvector_proof.h
index f89774945..6b952e35c 100644
--- a/src/proof/bitvector_proof.h
+++ b/src/proof/bitvector_proof.h
@@ -157,7 +157,7 @@ public:
virtual void printResolutionProof(std::ostream& os, std::ostream& paren, ProofLetMap& letMap);
void calculateAtomsInBitblastingProof();
const std::set<Node>* getAtomsInBitblastingProof();
- void printConstantDisequalityProof(std::ostream& os, Expr c1, Expr c2);
+ void printConstantDisequalityProof(std::ostream& os, Expr c1, Expr c2, const ProofLetMap &globalLetMap);
void printRewriteProof(std::ostream& os, const Node &n1, const Node &n2);
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback