3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 09:04:07 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-23 10:47:39 -07:00
parent 43d932301d
commit 85b4fc1865

View file

@ -1539,6 +1539,7 @@ void two_contexts_example1()
x1 = Z3_mk_const(ctx1, Z3_mk_int_symbol(ctx1,0), Z3_mk_bool_sort(ctx1));
x2 = Z3_mk_const(ctx2, Z3_mk_int_symbol(ctx2,0), Z3_mk_bool_sort(ctx2));
(void)x1;
Z3_del_context(ctx1);
/* ctx2 can still be used. */
@ -2104,6 +2105,7 @@ void forest_example() {
(void)f3;
(void)f2;
(void)t4;
(void)t3;
(void)t2;
/* nil != cons(nil,nil) */