summaryrefslogtreecommitdiff
path: root/src/main/driver_unified.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/driver_unified.cpp')
-rw-r--r--src/main/driver_unified.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index d42f389c1..e9d071918 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -300,14 +300,7 @@ int runCvc4(int argc, char* argv[], Options& opts) {
Result result;
if(status) {
result = pExecutor->getResult();
-
- if(result.asSatisfiabilityResult() == Result::SAT) {
- returnValue = 10;
- } else if(result.asSatisfiabilityResult() == Result::UNSAT) {
- returnValue = 20;
- } else {
- returnValue = 0;
- }
+ returnValue = 0;
} else {
// there was some kind of error
returnValue = 1;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback