summaryrefslogtreecommitdiff
path: root/src/proof/bitvector_proof.cpp
diff options
context:
space:
mode:
authorAndres Notzli <andres.noetzli@gmail.com>2016-08-08 20:33:24 -0700
committerAndres Notzli <andres.noetzli@gmail.com>2016-08-09 01:05:30 -0700
commitd0610224d0eeab12fd4f779e01b5fdd36c57b304 (patch)
tree03ab85e9d8a9b55e3d259aae53c45c1e3b496eab /src/proof/bitvector_proof.cpp
parent54fc9c88ac754c96fc0a9c88d6c80c72e9050d34 (diff)
Fix missing/redundant spaces in proofsfix_proof_spaces
Before, in some cases, e.g. when printing sorts and in resolution proofs, the proofs contained redundant and/or missing spaces. With this commit, CVC4 now prints out `(trust_f (= (Array Index Element) let10 let12)` instead of `(trust_f (= (Array Index Element )let10 let12))`.
Diffstat (limited to 'src/proof/bitvector_proof.cpp')
-rw-r--r--src/proof/bitvector_proof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/bitvector_proof.cpp b/src/proof/bitvector_proof.cpp
index 49e0e8e2f..cbe54ff4b 100644
--- a/src/proof/bitvector_proof.cpp
+++ b/src/proof/bitvector_proof.cpp
@@ -479,7 +479,7 @@ void LFSCBitVectorProof::printOwnedSort(Type type, std::ostream& os) {
Debug("pf::bv") << std::endl << "(pf::bv) LFSCBitVectorProof::printOwnedSort( " << type << " )" << std::endl;
Assert (type.isBitVector());
unsigned width = utils::getSize(type);
- os << "(BitVec "<<width<<")";
+ os << "(BitVec " << width << ")";
}
void LFSCBitVectorProof::printTheoryLemmaProof(std::vector<Expr>& lemma, std::ostream& os, std::ostream& paren, const ProofLetMap& map) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback