summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 78f47993f..1827d902c 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -2438,12 +2438,7 @@ CVC4::SExpr SmtEngine::getInfo(const std::string& key) const {
}
return SExpr(stats);
} else if(key == "error-behavior") {
- // immediate-exit | continued-execution
- if( options::continuedExecution() || options::interactive() ) {
- return SExpr(SExpr::Keyword("continued-execution"));
- } else {
- return SExpr(SExpr::Keyword("immediate-exit"));
- }
+ return SExpr(SExpr::Keyword("immediate-exit"));
} else if(key == "name") {
return SExpr(Configuration::getName());
} else if(key == "version") {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback