summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/printer/smt2/smt2_printer.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/printer/smt2/smt2_printer.cpp b/src/printer/smt2/smt2_printer.cpp
index 1250bc659..6fd047ebc 100644
--- a/src/printer/smt2/smt2_printer.cpp
+++ b/src/printer/smt2/smt2_printer.cpp
@@ -967,9 +967,7 @@ static void toStream(std::ostream& out, const DefineNamedFunctionCommand* c) thr
}
static void toStream(std::ostream& out, const SimplifyCommand* c) throw() {
- out << "Simplify( << " << c->getTerm() << " >> )";
-
- out << "ERROR: don't know how to output simplify command" << endl;
+ out << "(simplify " << c->getTerm() << ")";
}
static void toStream(std::ostream& out, const GetValueCommand* c) throw() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback