mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fixed error check in read_interpolation_problem
This commit is contained in:
parent
d815af9f0f
commit
6e18f44d99
|
@ -617,7 +617,7 @@ extern "C" {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (unsigned j = 0; j < num - 1; j++)
|
for (unsigned j = 0; j < num - 1; j++)
|
||||||
if (read_parents[j] == SHRT_MIN){
|
if (read_parents[j] == SHRT_MAX){
|
||||||
read_error << "formula " << j + 1 << ": unreferenced";
|
read_error << "formula " << j + 1 << ": unreferenced";
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue