summaryrefslogtreecommitdiff
path: root/src/smt/smt_solver.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-09-02 16:02:41 -0500
committerGitHub <noreply@github.com>2020-09-02 16:02:41 -0500
commit2d6d62b7bc0c15a44b38641a52ba389591ecc7f6 (patch)
treee11ae0a24c157cf01dbcf287727240b4e75b7b8a /src/smt/smt_solver.cpp
parentdba70e10ef8ae0a991969cb7ca0cba2d0e9d9d4d (diff)
parent0f9fb31069d51e003a39b0e93f506324dec2bdac (diff)
Merge branch 'master' into fixCMSBuildPRfixCMSBuildPR
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