Hoare Logic, calculate pre condition

134 Views Asked by At
if x < 15:
    x = x+1
else:
    x = 0

the post condition is: Q = {0 <= x <= 15}

is the correct pre condition P1 = {-1 <= x} or P2 = {0 <= x <= 15}

And how can I calculate it?

1

There are 1 best solutions below

0
On

Both are valid preconditions for the code fragment and postcondition, so you want to choose the weaker one, which in this case is P1. (P2 specifies a narrower range of values for x, all of which are present in the range specified by P1.)