summaryrefslogtreecommitdiff
path: root/src/theory/theory_inference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_inference.cpp')
-rw-r--r--src/theory/theory_inference.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/theory_inference.cpp b/src/theory/theory_inference.cpp
index 618dc640b..38e01eea5 100644
--- a/src/theory/theory_inference.cpp
+++ b/src/theory/theory_inference.cpp
@@ -28,9 +28,10 @@ SimpleTheoryLemma::SimpleTheoryLemma(Node n,
{
}
-bool SimpleTheoryLemma::process(TheoryInferenceManager* im)
+bool SimpleTheoryLemma::process(TheoryInferenceManager* im, bool asLemma)
{
Assert(!d_node.isNull());
+ Assert(asLemma);
// send (trusted) lemma on the output channel with property p
return im->trustedLemma(TrustNode::mkTrustLemma(d_node, d_pg), d_property);
}
@@ -42,8 +43,9 @@ SimpleTheoryInternalFact::SimpleTheoryInternalFact(Node conc,
{
}
-bool SimpleTheoryInternalFact::process(TheoryInferenceManager* im)
+bool SimpleTheoryInternalFact::process(TheoryInferenceManager* im, bool asLemma)
{
+ Assert(!asLemma);
bool polarity = d_conc.getKind() != NOT;
TNode atom = polarity ? d_conc : d_conc[0];
// no double negation or conjunctive conclusions
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback