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:
parent
7ed32f4315
commit
fc73271b83
|
@ -2950,8 +2950,9 @@ void mk_model_example() {
|
||||||
// Check the interpretations we expect to be present
|
// Check the interpretations we expect to be present
|
||||||
// are.
|
// are.
|
||||||
{
|
{
|
||||||
Z3_func_decl expectedInterpretations[] = {aFuncDecl, bFuncDecl, cFuncDecl};
|
Z3_func_decl expectedInterpretations[3] = {aFuncDecl, bFuncDecl, cFuncDecl};
|
||||||
for (int index = 0;
|
int index;
|
||||||
|
for (index = 0;
|
||||||
index < sizeof(expectedInterpretations) / sizeof(Z3_func_decl);
|
index < sizeof(expectedInterpretations) / sizeof(Z3_func_decl);
|
||||||
++index) {
|
++index) {
|
||||||
Z3_func_decl d = expectedInterpretations[index];
|
Z3_func_decl d = expectedInterpretations[index];
|
||||||
|
@ -2980,17 +2981,19 @@ void mk_model_example() {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int aPlusBValue = 0;
|
{
|
||||||
Z3_bool getAPlusBValueSuccess =
|
int aPlusBValue = 0;
|
||||||
Z3_get_numeral_int(ctx, aPlusBEval, &aPlusBValue);
|
Z3_bool getAPlusBValueSuccess =
|
||||||
if (getAPlusBValueSuccess != Z3_TRUE) {
|
Z3_get_numeral_int(ctx, aPlusBEval, &aPlusBValue);
|
||||||
printf("Failed to get integer value for a+b\n");
|
if (getAPlusBValueSuccess != Z3_TRUE) {
|
||||||
exit(1);
|
printf("Failed to get integer value for a+b\n");
|
||||||
}
|
exit(1);
|
||||||
printf("Evaluated a + b = %d\n", aPlusBValue);
|
}
|
||||||
if (aPlusBValue != 3) {
|
printf("Evaluated a + b = %d\n", aPlusBValue);
|
||||||
printf("a+b did not evaluate to expected value\n");
|
if (aPlusBValue != 3) {
|
||||||
exit(1);
|
printf("a+b did not evaluate to expected value\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3011,17 +3014,19 @@ void mk_model_example() {
|
||||||
printf("Failed to evaluate model\n");
|
printf("Failed to evaluate model\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
int arrayAddValue = 0;
|
{
|
||||||
Z3_bool getArrayAddValueSuccess =
|
int arrayAddValue = 0;
|
||||||
Z3_get_numeral_int(ctx, arrayAddEval, &arrayAddValue);
|
Z3_bool getArrayAddValueSuccess =
|
||||||
if (getArrayAddValueSuccess != Z3_TRUE) {
|
Z3_get_numeral_int(ctx, arrayAddEval, &arrayAddValue);
|
||||||
printf("Failed to get integer value for c[0] + c[1] + c[2]\n");
|
if (getArrayAddValueSuccess != Z3_TRUE) {
|
||||||
exit(1);
|
printf("Failed to get integer value for c[0] + c[1] + c[2]\n");
|
||||||
}
|
exit(1);
|
||||||
printf("Evaluated c[0] + c[1] + c[2] = %d\n", arrayAddValue);
|
}
|
||||||
if (arrayAddValue != 7) {
|
printf("Evaluated c[0] + c[1] + c[2] = %d\n", arrayAddValue);
|
||||||
printf("c[0] + c[1] + c[2] did not evaluate to expected value\n");
|
if (arrayAddValue != 7) {
|
||||||
exit(1);
|
printf("c[0] + c[1] + c[2] did not evaluate to expected value\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue