summaryrefslogtreecommitdiff
path: root/src/util/language.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-27 22:04:38 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-27 22:04:38 +0000
commitad0a71e2782bc291ba9f808d24df2e1d8ca1b41e (patch)
tree744a9ae0f10f6dd8837d7e0dcd8bd2b25d34e481 /src/util/language.cpp
parent51daaee8eb1ee55ee3323c5395a95fd121fe87a8 (diff)
* Rename SMT parts (printer, parser) to SMT1
* Change --lang smt to mean SMT-LIBv2 * --lang smt1 now means SMT-LIBv1 * SMT-LIBv2 parser now gives helpful error if input looks like v1 * SMT-LIBv1 parser now gives helpful error if input looks like v2 * CVC presentation language parser now gives helpful error if input looks like either SMT-LIB v1 or v2 * Other associated changes (this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/util/language.cpp')
-rw-r--r--src/util/language.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/language.cpp b/src/util/language.cpp
index 1792797cf..22e9840d7 100644
--- a/src/util/language.cpp
+++ b/src/util/language.cpp
@@ -23,7 +23,7 @@ namespace language {
InputLanguage toInputLanguage(OutputLanguage language) {
switch(language) {
- case output::LANG_SMTLIB:
+ case output::LANG_SMTLIB_V1:
case output::LANG_SMTLIB_V2:
case output::LANG_TPTP:
case output::LANG_CVC4:
@@ -41,7 +41,7 @@ InputLanguage toInputLanguage(OutputLanguage language) {
OutputLanguage toOutputLanguage(InputLanguage language) {
switch(language) {
- case input::LANG_SMTLIB:
+ case input::LANG_SMTLIB_V1:
case input::LANG_SMTLIB_V2:
case input::LANG_CVC4:
case input::LANG_TPTP:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback