summaryrefslogtreecommitdiff
path: root/src/theory/output_channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/output_channel.cpp')
-rw-r--r--src/theory/output_channel.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/theory/output_channel.cpp b/src/theory/output_channel.cpp
index 91f30514c..e63b78486 100644
--- a/src/theory/output_channel.cpp
+++ b/src/theory/output_channel.cpp
@@ -84,19 +84,7 @@ std::ostream& operator<<(std::ostream& out, LemmaProperty p)
return out;
}
-LemmaStatus::LemmaStatus(TNode rewrittenLemma, unsigned level)
- : d_rewrittenLemma(rewrittenLemma), d_level(level)
-{
-}
-
-TNode LemmaStatus::getRewrittenLemma() const { return d_rewrittenLemma; }
-
-unsigned LemmaStatus::getLevel() const { return d_level; }
-
-LemmaStatus OutputChannel::split(TNode n)
-{
- return splitLemma(n.orNode(n.notNode()));
-}
+void OutputChannel::split(TNode n) { splitLemma(n.orNode(n.notNode())); }
void OutputChannel::trustedConflict(TrustNode pconf)
{
@@ -104,7 +92,7 @@ void OutputChannel::trustedConflict(TrustNode pconf)
<< std::endl;
}
-LemmaStatus OutputChannel::trustedLemma(TrustNode lem, LemmaProperty p)
+void OutputChannel::trustedLemma(TrustNode lem, LemmaProperty p)
{
Unreachable() << "OutputChannel::trustedLemma: no implementation"
<< std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback