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

Merge pull request #449 from kenmcmil/issue243

fixed logging on return of Z3_compute_interpolant...
This commit is contained in:
Christoph M. Wintersteiger 2016-02-12 12:40:01 +00:00
commit 9dbb8057ca
2 changed files with 43 additions and 2 deletions

View file

@ -289,7 +289,7 @@ extern "C" {
}
catch (z3_exception & ex) {
mk_c(c)->handle_exception(ex);
return Z3_L_UNDEF;
RETURN_Z3_compute_interpolant Z3_L_UNDEF;
}
}
@ -323,7 +323,7 @@ extern "C" {
*out_interp = of_ast_vector(v);
return status;
RETURN_Z3_compute_interpolant status;
Z3_CATCH_RETURN(Z3_L_UNDEF);
}