3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

more C fixes to model example

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-10-25 11:20:56 -07:00
parent 7ed32f4315
commit fc73271b83

View file

@ -2950,8 +2950,9 @@ void mk_model_example() {
// Check the interpretations we expect to be present
// are.
{
Z3_func_decl expectedInterpretations[] = {aFuncDecl, bFuncDecl, cFuncDecl};
for (int index = 0;
Z3_func_decl expectedInterpretations[3] = {aFuncDecl, bFuncDecl, cFuncDecl};
int index;
for (index = 0;
index < sizeof(expectedInterpretations) / sizeof(Z3_func_decl);
++index) {
Z3_func_decl d = expectedInterpretations[index];
@ -2980,6 +2981,7 @@ void mk_model_example() {
exit(1);
}
{
int aPlusBValue = 0;
Z3_bool getAPlusBValueSuccess =
Z3_get_numeral_int(ctx, aPlusBEval, &aPlusBValue);
@ -2993,6 +2995,7 @@ void mk_model_example() {
exit(1);
}
}
}
{
// Evaluate c[0] + c[1] + c[2] under model
@ -3011,6 +3014,7 @@ void mk_model_example() {
printf("Failed to evaluate model\n");
exit(1);
}
{
int arrayAddValue = 0;
Z3_bool getArrayAddValueSuccess =
Z3_get_numeral_int(ctx, arrayAddEval, &arrayAddValue);
@ -3024,6 +3028,7 @@ void mk_model_example() {
exit(1);
}
}
}
Z3_ast_vector_dec_ref(ctx, oneArgs);
Z3_ast_vector_dec_ref(ctx, zeroArgs);