Questions tagged [pyexz3]

1 questions
0
votes
1 answer

PyExZ3 does not find all feasible paths of a program

A tiny example of PyExZ3 usage that I came up with did not work as expected. Here is the example: def d1(x,y): if y < x - 2 : return 7 else : return 2 def d2(x,y): if y > 3 : return 10 else: return 50 def d3(x,y): if y <…
zajer
  • 649
  • 6
  • 17