z3py snippet:
x = Int('x')
s = Solver()
s.add(x <= x)
print s.check()
print s.model()
print s.model().sexpr()
Output:
sat
[]
Any value of x
would do but z3
returns empty model.
Does a missing free variable x
in the model indicates that any integer value is a valid model?