Skip to content

Commit

Permalink
feat(contractor/contractor_capd4.cpp): hide exception outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
soonhokong committed Mar 1, 2016
1 parent a7f6edb commit a2689af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contractor/contractor_capd4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -807,12 +807,12 @@ void contractor_capd_full::prune(box & b, SMTConfig & config) {
}
} catch (capd::intervals::IntervalError<double> & e) {
if (config.nra_ODE_show_progress) {
cout << " [IntervalError]" << endl;
cout << " [Done]" << endl;
}
throw contractor_exception(e.what());
} catch (capd::ISolverException & e) {
if (config.nra_ODE_show_progress) {
cout << " [ISolverException]" << endl;
cout << " [Done]" << endl;
}
throw contractor_exception(e.what());
}
Expand Down

0 comments on commit a2689af

Please sign in to comment.