summaryrefslogtreecommitdiff
path: root/src/util/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/options.cpp')
-rw-r--r--src/util/options.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/options.cpp b/src/util/options.cpp
index b9291f59c..c02482e7e 100644
--- a/src/util/options.cpp
+++ b/src/util/options.cpp
@@ -312,12 +312,14 @@ Languages currently supported as arguments to the -L / --lang option:\n\
pl | cvc4 CVC4 presentation language\n\
smt | smtlib SMT-LIB format 1.2\n\
smt2 | smtlib2 SMT-LIB format 2.0\n\
+ tptp TPTP format (cnf and fof)\n\
\n\
Languages currently supported as arguments to the --output-lang option:\n\
auto match the output language to the input language\n\
pl | cvc4 CVC4 presentation language\n\
smt | smtlib SMT-LIB format 1.2\n\
smt2 | smtlib2 SMT-LIB format 2.0\n\
+ tptp TPTP format\n\
ast internal format (simple syntax-tree language)\n\
";
@@ -1633,6 +1635,9 @@ void Options::setOutputLanguage(const char* str) throw(OptionException) {
} else if(!strcmp(str, "smtlib2") || !strcmp(str, "smt2")) {
outputLanguage = language::output::LANG_SMTLIB_V2;
return;
+ } else if(!strcmp(str, "tptp")) {
+ outputLanguage = language::output::LANG_TPTP;
+ return;
} else if(!strcmp(str, "ast")) {
outputLanguage = language::output::LANG_AST;
return;
@@ -1659,6 +1664,9 @@ void Options::setInputLanguage(const char* str) throw(OptionException) {
} else if(!strcmp(str, "smtlib2") || !strcmp(str, "smt2")) {
inputLanguage = language::input::LANG_SMTLIB_V2;
return;
+ } else if(!strcmp(str, "tptp")) {
+ inputLanguage = language::input::LANG_TPTP;
+ return;
} else if(!strcmp(str, "auto")) {
inputLanguage = language::input::LANG_AUTO;
return;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback