mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-24 06:52:44 +03:00
49030290e9
Revised how we do output for `:sat` and `:prove` without arguments, making it more clear what properties are being checked in each case. Also reworded the output of `:check` slightly in the case where the property has no inputs. It would be nice to make `:check` output more consistent with the others.
6 lines
159 B
Plaintext
6 lines
159 B
Plaintext
property t0 = True
|
|
property t1 x = x == (x : [32])
|
|
property t2 x y = if (x : [32]) < (y : [32]) then y != zero else True
|
|
not_a_prop = True
|
|
property f0 = False
|