summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-01-30 20:59:05 +0100
committerajreynol <andrew.j.reynolds@gmail.com>2015-01-30 20:59:05 +0100
commit4db1c674588a280da61033c5a60e33327887c57d (patch)
tree29aed70e237c43ee98b04122e14d1db5e580bad9 /src/main
parentfd2ca646503ffb09caf6a4d1cb4d57c34defdc22 (diff)
Generalize conflict clauses in sygus sym break, merge caches, refactor. Preparation for single invocation properties. Set output lang to SMT2 for sygus.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/driver_unified.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index c011671f8..c3372d2c8 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -202,6 +202,8 @@ int runCvc4(int argc, char* argv[], Options& opts) {
} else if((len >= 3 && !strcmp(".sy", filename + len - 3))
|| (len >= 3 && !strcmp(".sl", filename + len - 3))) {
opts.set(options::inputLanguage, language::input::LANG_SYGUS);
+ //since there is no sygus output language, set this to SMT lib 2
+ opts.set(options::outputLanguage, language::output::LANG_SMTLIB_V2_0);
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback