summaryrefslogtreecommitdiff
path: root/src/main/driver_portfolio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/driver_portfolio.cpp')
-rw-r--r--src/main/driver_portfolio.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/main/driver_portfolio.cpp b/src/main/driver_portfolio.cpp
index 6cf9d0130..c1c3f699b 100644
--- a/src/main/driver_portfolio.cpp
+++ b/src/main/driver_portfolio.cpp
@@ -700,7 +700,6 @@ Result doSmt(SmtEngine &smt, Command *cmd, Options &options) {
*pOptions->out << "unknown" << endl;
cerr << "CVC4 Error:" << endl << e << endl;
printUsage(*pOptions);
- return Result::SAT_UNKNOWN;
} catch(Exception& e) {
#ifdef CVC4_COMPETITION_MODE
*pOptions->out << "unknown" << endl;
@@ -709,23 +708,8 @@ Result doSmt(SmtEngine &smt, Command *cmd, Options &options) {
if(pOptions->statistics) {
pStatistics->flushInformation(*pOptions->err);
}
- return Result::SAT_UNKNOWN;
- } catch(bad_alloc) {
-#ifdef CVC4_COMPETITION_MODE
- *pOptions->out << "unknown" << endl;
-#endif
- *pOptions->err << "CVC4 ran out of memory." << endl;
- if(pOptions->statistics) {
- pStatistics->flushInformation(*pOptions->err);
- }
- return Result::SAT_UNKNOWN;
- } catch(...) {
-#ifdef CVC4_COMPETITION_MODE
- *pOptions->out << "unknown" << endl;
-#endif
- *pOptions->err << "CVC4 threw an exception of unknown type." << endl;
- return Result::SAT_UNKNOWN;
}
+ return Result::SAT_UNKNOWN;
}
template<typename T>
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback