summaryrefslogtreecommitdiff
path: root/src/theory/combination_care_graph.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-08-28 15:40:16 -0500
committerGitHub <noreply@github.com>2020-08-28 15:40:16 -0500
commitf51d3e353fe8e50e5e73c37c17229e603a56ecdd (patch)
treed3a00e94d2850aaac623d81df04a0bfc7f762087 /src/theory/combination_care_graph.cpp
parentc137366e668aff70b1739a1f2c5cf8e6e2e28a72 (diff)
(proof-new) Make CombinationEngine proof producing (#4955)
Makes combination engine proof producing (for Boolean splits). Followup PRs will start to add proof production in TheoryEngine.
Diffstat (limited to 'src/theory/combination_care_graph.cpp')
-rw-r--r--src/theory/combination_care_graph.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/theory/combination_care_graph.cpp b/src/theory/combination_care_graph.cpp
index 9374e7ecb..c390a4b25 100644
--- a/src/theory/combination_care_graph.cpp
+++ b/src/theory/combination_care_graph.cpp
@@ -22,8 +22,10 @@ namespace CVC4 {
namespace theory {
CombinationCareGraph::CombinationCareGraph(
- TheoryEngine& te, const std::vector<Theory*>& paraTheories)
- : CombinationEngine(te, paraTheories)
+ TheoryEngine& te,
+ const std::vector<Theory*>& paraTheories,
+ ProofNodeManager* pnm)
+ : CombinationEngine(te, paraTheories, pnm)
{
}
@@ -62,7 +64,17 @@ void CombinationCareGraph::combineTheories()
<< "TheoryEngine::combineTheories(): requesting a split " << std::endl;
Node split = equality.orNode(equality.notNode());
- sendLemma(split, carePair.d_theory);
+ TrustNode tsplit;
+ if (isProofEnabled())
+ {
+ // make proof of splitting lemma
+ tsplit = d_cmbsPg->mkTrustNode(split, PfRule::SPLIT, {equality});
+ }
+ else
+ {
+ tsplit = TrustNode::mkTrustLemma(split, nullptr);
+ }
+ sendLemma(tsplit, carePair.d_theory);
// Could check the equality status here:
// EqualityStatus es = getEqualityStatus(carePair.d_a, carePair.d_b);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback