summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2020-12-11 18:58:13 -0300
committerGitHub <noreply@github.com>2020-12-11 18:58:13 -0300
commit8d0de294c259e789a149bc5ceb5d6501868e83d0 (patch)
treed714a7b920fc369bbbe3d37730fc4a6edeedde0e /src/prop/prop_engine.cpp
parent49215e6948aba1d6b762e28a7293581e25c2df8c (diff)
[proof-new] Updating theory proxy to new proof infrastructure (#5653)
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index 8c1e452e7..e5efcbf8f 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -78,6 +78,7 @@ PropEngine::PropEngine(TheoryEngine* te,
d_satSolver(NULL),
d_registrar(NULL),
d_cnfStream(NULL),
+ d_pfCnfStream(nullptr),
d_interrupted(false),
d_resourceManager(rm),
d_outMgr(outMgr)
@@ -399,6 +400,8 @@ bool PropEngine::properExplanation(TNode node, TNode expl) const {
return true;
}
+ProofCnfStream* PropEngine::getProofCnfStream() { return d_pfCnfStream.get(); }
+
std::shared_ptr<ProofNode> PropEngine::getProof()
{
// TODO (proj #37) implement this
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback