mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-15 18:52:13 +03:00
a04f236169
With SBV 7.0, we get back satisfying assignments in a different order. We should probably adjust this test to be less fragile eventually.
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
Loading module Cryptol
|
|
(\x -> x > 0x4) 0x6 = True
|
|
it : {result : Bit, arg1 : [4]}
|
|
{result = True, arg1 = 0x6}
|
|
(\x -> x > 0x4) 0x6 = True
|
|
(\x -> x > 0x4) 0xe = True
|
|
(\x -> x > 0x4) 0x8 = True
|
|
(\x -> x > 0x4) 0x9 = True
|
|
(\x -> x > 0x4) 0xc = True
|
|
(\x -> x > 0x4) 0xa = True
|
|
(\x -> x > 0x4) 0x5 = True
|
|
(\x -> x > 0x4) 0x7 = True
|
|
(\x -> x > 0x4) 0xd = True
|
|
(\x -> x > 0x4) 0xb = True
|
|
(\x -> x > 0x4) 0xf = True
|
|
it : [11]{result : Bit, arg1 : [4]}
|
|
[{result = True, arg1 = 0x6}, {result = True, arg1 = 0xe},
|
|
{result = True, arg1 = 0x8}, {result = True, arg1 = 0x9},
|
|
{result = True, arg1 = 0xc}, {result = True, arg1 = 0xa},
|
|
{result = True, arg1 = 0x5}, {result = True, arg1 = 0x7},
|
|
{result = True, arg1 = 0xd}, {result = True, arg1 = 0xb},
|
|
{result = True, arg1 = 0xf}]
|
|
must be an integer > 0 or "all"
|
|
must be an integer > 0 or "all"
|
|
(\x -> x > 0x4) 0x6 = True
|
|
(\x -> x > 0x4) 0xe = True
|
|
(\x -> x > 0x4) 0x8 = True
|
|
it : [3]{result : Bit, arg1 : [4]}
|
|
[{result = True, arg1 = 0x6}, {result = True, arg1 = 0xe},
|
|
{result = True, arg1 = 0x8}]
|