I tried the following code in http://rise4fun.com/z3/tutorial
(declare-const a Int)
(assert (> a 100))
(check-sat)
(get-model)
the result is always a=101
. I need some randomness in the answer that it produce a random number in the range [101,MAXINT)
. for example gets a seed=1000
and offers the a=12344
. for seed=2323
offers a=9088765
and ... .
what should i add to this simple code?