summaryrefslogtreecommitdiff
path: root/src/smt/smt_solver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_solver.cpp')
-rw-r--r--src/smt/smt_solver.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/smt/smt_solver.cpp b/src/smt/smt_solver.cpp
index a31d84587..706c18416 100644
--- a/src/smt/smt_solver.cpp
+++ b/src/smt/smt_solver.cpp
@@ -14,7 +14,6 @@
#include "smt/smt_solver.h"
-#include "proof/theory_proof.h"
#include "prop/prop_engine.h"
#include "smt/assertions.h"
#include "smt/preprocessor.h"
@@ -58,11 +57,6 @@ void SmtSolver::finishInit(const LogicInfo& logicInfo)
++id)
{
theory::TheoryConstructor::addTheory(d_theoryEngine.get(), id);
- // register with proof engine if applicable
-#ifdef CVC4_PROOF
- ProofManager::currentPM()->getTheoryProofEngine()->registerTheory(
- d_theoryEngine->theoryOf(id));
-#endif
}
Trace("smt-debug") << "Making prop engine..." << std::endl;
@@ -197,7 +191,7 @@ Result SmtSolver::checkSatisfiability(Assertions& as,
// set the filename on the result
Result r = Result(result, filename);
-
+
// notify our state of the check-sat result
d_state.notifyCheckSatResult(hasAssumptions, r);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback