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.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/theory/output_channel.cpp b/src/theory/output_channel.cpp
index 9fe973569..c918438ee 100644
--- a/src/theory/output_channel.cpp
+++ b/src/theory/output_channel.cpp
@@ -49,6 +49,10 @@ bool isLemmaPropertySendAtoms(LemmaProperty p)
{
return (p & LemmaProperty::SEND_ATOMS) != LemmaProperty::NONE;
}
+bool isLemmaPropertyNeedsJustify(LemmaProperty p)
+{
+ return (p & LemmaProperty::NEEDS_JUSTIFY) != LemmaProperty::NONE;
+}
std::ostream& operator<<(std::ostream& out, LemmaProperty p)
{
@@ -71,6 +75,10 @@ std::ostream& operator<<(std::ostream& out, LemmaProperty p)
{
out << " SEND_ATOMS";
}
+ if (isLemmaPropertyNeedsJustify(p))
+ {
+ out << " NEEDS_JUSTIFY";
+ }
out << " }";
}
return out;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback