summaryrefslogtreecommitdiff
path: root/src/proof/bitvector_proof.cpp
diff options
context:
space:
mode:
authoryoni206 <yoni206@users.noreply.github.com>2018-04-25 15:12:51 -0700
committerGitHub <noreply@github.com>2018-04-25 15:12:51 -0700
commit1ae10032fb99ca1d8f73c5f51dce3cfc976b3dfb (patch)
tree9006c24edf5605145167cea0ce1d5df829bcac57 /src/proof/bitvector_proof.cpp
parent8cc4bc292c6ac60edfa356355ad235e51ad15310 (diff)
Refactor array-proofs and uf-proofs (#1655)
This commit unifies duplicate code blocks from array_proof.cpp and uf_proof.cpp into theory_proof.cpp.
Diffstat (limited to 'src/proof/bitvector_proof.cpp')
-rw-r--r--src/proof/bitvector_proof.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proof/bitvector_proof.cpp b/src/proof/bitvector_proof.cpp
index 7a2faba37..afddfd323 100644
--- a/src/proof/bitvector_proof.cpp
+++ b/src/proof/bitvector_proof.cpp
@@ -51,6 +51,7 @@ void BitVectorProof::initSatProof(CVC4::BVMinisat::Solver* solver) {
d_resolutionProof = new LFSCBVSatProof(solver, &d_fakeContext, "bb", true);
}
+theory::TheoryId BitVectorProof::getTheoryId() { return theory::THEORY_BV; }
void BitVectorProof::initCnfProof(prop::CnfStream* cnfStream,
context::Context* cnf) {
Assert (d_cnfProof == NULL);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback