summaryrefslogtreecommitdiff
path: root/src/printer/printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/printer.cpp')
-rw-r--r--src/printer/printer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/printer/printer.cpp b/src/printer/printer.cpp
index dd2e180e1..a8e2534dc 100644
--- a/src/printer/printer.cpp
+++ b/src/printer/printer.cpp
@@ -40,7 +40,10 @@ Printer* Printer::makePrinter(OutputLanguage lang) throw() {
case LANG_SMTLIB_V1: // TODO the printer
return new printer::smt1::Smt1Printer();
- case LANG_SMTLIB_V2:
+ case LANG_SMTLIB_V2_0:
+ return new printer::smt2::Smt2Printer(printer::smt2::smt2_0_variant);
+
+ case LANG_SMTLIB_V2_5:
return new printer::smt2::Smt2Printer();
case LANG_TPTP:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback