summaryrefslogtreecommitdiff
path: root/src/main/main.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2017-03-16 11:37:53 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2017-03-16 11:38:09 -0500
commit966f38dc17ee316fdb069ec2a427c4f79f1f73b2 (patch)
tree1a1b60435daffa8b59eea589ef04c26b50f8a724 /src/main/main.cpp
parent594301e6f2893ebe9baba5083ff084933b1e9da9 (diff)
Parsing support for SMT LIB 2.6. Minor fixes for printing datatypes. Fix for mkGroundTerm for parametric datatypes. Minor change to run_regression to allow regressions to override input language. Minor refactoring to Cvc.g.
Diffstat (limited to 'src/main/main.cpp')
-rw-r--r--src/main/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp
index 7b6b9ad86..9f77045c4 100644
--- a/src/main/main.cpp
+++ b/src/main/main.cpp
@@ -65,7 +65,8 @@ int main(int argc, char* argv[]) {
*opts.getOut() << "unknown" << endl;
#endif
if(opts.getOutputLanguage() == output::LANG_SMTLIB_V2_0 ||
- opts.getOutputLanguage() == output::LANG_SMTLIB_V2_5) {
+ opts.getOutputLanguage() == output::LANG_SMTLIB_V2_5 ||
+ opts.getOutputLanguage() == output::LANG_SMTLIB_V2_6) {
*opts.getOut() << "(error \"" << e << "\")" << endl;
} else {
*opts.getErr() << "CVC4 Error:" << endl << e << endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback