summaryrefslogtreecommitdiff
path: root/src/printer
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2014-01-17 17:56:08 -0600
committerTianyi Liang <tianyi-liang@uiowa.edu>2014-01-18 11:10:40 -0600
commit368e2945a871e16bdf2f3a26a401b9d157240a9d (patch)
treef5201f5c43f36b581b830ba291c80828a67ae6ad /src/printer
parent0d2c0a0c5a07479cadc5ba54e5f6258f1964d1e0 (diff)
strings with new ideas
Diffstat (limited to 'src/printer')
-rw-r--r--src/printer/smt2/smt2_printer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/printer/smt2/smt2_printer.cpp b/src/printer/smt2/smt2_printer.cpp
index 0ca7f323b..cf3fac971 100644
--- a/src/printer/smt2/smt2_printer.cpp
+++ b/src/printer/smt2/smt2_printer.cpp
@@ -124,6 +124,7 @@ void Smt2Printer::toStream(std::ostream& out, TNode n,
case BOOLEAN_TYPE: out << "Bool"; break;
case REAL_TYPE: out << "Real"; break;
case INTEGER_TYPE: out << "Int"; break;
+ case STRING_TYPE: out << "String"; break;
default:
// fall back on whatever operator<< does on underlying type; we
// might luck out and be SMT-LIB v2 compliant
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback