summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/printer/smt2/smt2_printer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/printer/smt2/smt2_printer.cpp b/src/printer/smt2/smt2_printer.cpp
index 9f9492cec..ae8d37713 100644
--- a/src/printer/smt2/smt2_printer.cpp
+++ b/src/printer/smt2/smt2_printer.cpp
@@ -528,8 +528,7 @@ void Smt2Printer::toStream(std::ostream& out,
bool stillNeedToPrintParams = true;
bool forceBinary = false; // force N-ary to binary when outputing children
// operator
- if (n.getNumChildren() != 0 && k != kind::INST_PATTERN_LIST
- && k != kind::CONSTRUCTOR_TYPE)
+ if (n.getNumChildren() != 0 && k != kind::CONSTRUCTOR_TYPE)
{
out << '(';
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback