summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-04-29 16:53:19 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-04-29 16:53:19 +0000
commit194c5b6f04c7c9bec8c0f23b88ac8d0f0094186a (patch)
tree20faf669228e725a7521311841a13b5ddbb71a78 /src/main
parentb99ec8f0f659884d30c5fa1a9312addd07e75059 (diff)
First draft implementation of SMT v2 parser
Diffstat (limited to 'src/main')
-rw-r--r--src/main/getopt.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/getopt.cpp b/src/main/getopt.cpp
index a272aaafd..2ad34597e 100644
--- a/src/main/getopt.cpp
+++ b/src/main/getopt.cpp
@@ -165,6 +165,9 @@ throw(OptionException) {
} else if(!strcmp(optarg, "smtlib") || !strcmp(optarg, "smt")) {
opts->lang = parser::LANG_SMTLIB;
break;
+ } else if(!strcmp(optarg, "smtlib2") || !strcmp(optarg, "smt2")) {
+ opts->lang = parser::LANG_SMTLIB_V2;
+ break;
} else if(!strcmp(optarg, "auto")) {
opts->lang = parser::LANG_AUTO;
break;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback