mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-17 21:11:35 +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.
31 lines
561 B
Plaintext
31 lines
561 B
Plaintext
Loading module Cryptol
|
|
Loading module Cryptol
|
|
Loading module Main
|
|
property f0 Using exhaustive testing.
|
|
FAILED
|
|
property t0 Using exhaustive testing.
|
|
passed 1 tests.
|
|
Q.E.D.
|
|
property t1 Using random testing.
|
|
testing...passed 100 tests.
|
|
Coverage: 0.00% (100 of 2^^32 values)
|
|
property t2 Using random testing.
|
|
testing...passed 100 tests.
|
|
Coverage: 0.00% (100 of 2^^64 values)
|
|
:prove f0
|
|
f0 = False
|
|
:prove t0
|
|
Q.E.D.
|
|
:prove t1
|
|
Q.E.D.
|
|
:prove t2
|
|
Q.E.D.
|
|
:sat f0
|
|
Unsatisfiable
|
|
:sat t0
|
|
t0 = True
|
|
:sat t1
|
|
t1 0x00000000 = True
|
|
:sat t2
|
|
t2 0x00000000 0x00000000 = True
|