summaryrefslogtreecommitdiff
path: root/src/main/driver_unified.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2017-11-03 15:36:38 -0500
committerGitHub <noreply@github.com>2017-11-03 15:36:38 -0500
commit5cafed748989602263b8ad1a27ac6b9bd159a441 (patch)
treeb0e474f47251d480dce48637e73f663aba0dd179 /src/main/driver_unified.cpp
parent3f2c2c745ae2f13441c1cabd363e6539c9bdaeb9 (diff)
Sygus clean main (#1297)
* Remove front end hack for sygus. * Remove other hack, add sygus solution output mode. * Clang format * Minor * Fix * Minor * Remove unused field.
Diffstat (limited to 'src/main/driver_unified.cpp')
-rw-r--r--src/main/driver_unified.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index 8ffb47e40..ebfc7266b 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -187,16 +187,6 @@ int runCvc4(int argc, char* argv[], Options& opts) {
opts.setOutputLanguage(language::toOutputLanguage(opts.getInputLanguage()));
}
- // if doing sygus, turn on CEGQI by default
- if(opts.getInputLanguage() == language::input::LANG_SYGUS ){
- if( !opts.wasSetByUserCeGuidedInst()) {
- opts.setCeGuidedInst(true);
- }
- if( !opts.wasSetByUserDumpSynth()) {
- opts.setDumpSynth(true);
- }
- }
-
// Determine which messages to show based on smtcomp_mode and verbosity
if(Configuration::isMuzzledBuild()) {
DebugChannel.setStream(&CVC4::null_os);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback