mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
fix examples
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fd8fd40669
commit
995e112a18
|
@ -1615,7 +1615,7 @@ void error_code_example2() {
|
||||||
Z3_del_context(ctx);
|
Z3_del_context(ctx);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
printf("Z3 error: %s.\n", Z3_get_error_msg_ex(ctx, (Z3_error_code)r));
|
printf("Z3 error: %s.\n", Z3_get_error_msg(ctx, (Z3_error_code)r));
|
||||||
if (ctx != NULL) {
|
if (ctx != NULL) {
|
||||||
Z3_del_context(ctx);
|
Z3_del_context(ctx);
|
||||||
}
|
}
|
||||||
|
@ -1803,7 +1803,7 @@ void parser_example5() {
|
||||||
Z3_del_context(ctx);
|
Z3_del_context(ctx);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
printf("Z3 error: %s.\n", Z3_get_error_msg_ex(ctx, (Z3_error_code)r));
|
printf("Z3 error: %s.\n", Z3_get_error_msg(ctx, (Z3_error_code)r));
|
||||||
if (ctx != NULL) {
|
if (ctx != NULL) {
|
||||||
printf("Error message: '%s'.\n",Z3_get_smtlib_error(ctx));
|
printf("Error message: '%s'.\n",Z3_get_smtlib_error(ctx));
|
||||||
del_solver(ctx, s);
|
del_solver(ctx, s);
|
||||||
|
|
|
@ -2209,7 +2209,7 @@ static bool is_smt2_file(char const* filename) {
|
||||||
static void check_error(z3::context& ctx) {
|
static void check_error(z3::context& ctx) {
|
||||||
Z3_error_code e = Z3_get_error_code(ctx);
|
Z3_error_code e = Z3_get_error_code(ctx);
|
||||||
if (e != Z3_OK) {
|
if (e != Z3_OK) {
|
||||||
std::cout << Z3_get_error_msg_ex(ctx, e) << "\n";
|
std::cout << Z3_get_error_msg(ctx, e) << "\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue