3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

dealing with incompleteness issues in duality

This commit is contained in:
Ken McMillan 2013-12-19 11:05:56 -08:00
parent a318b0f104
commit 48e10a9e2d
5 changed files with 32 additions and 7 deletions

View file

@ -213,6 +213,9 @@ lbool dl_interface::query(::expr * query) {
catch (Duality::solver::cancel_exception &exn){
throw default_exception("duality canceled");
}
catch (Duality::Solver::Incompleteness &exn){
throw default_exception("incompleteness");
}
// profile!