mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-15 18:52:13 +03:00
a5cf80c570
Cryptol's invocation of proof tools has changed quite a bit since this PR was first opened, so this took a fair amount of work to integrate. However we now have the :satNum option, and multiple sat results are correctly bound to `it`.
13 lines
154 B
Plaintext
13 lines
154 B
Plaintext
:sat \x -> x > 0x4
|
|
:t it
|
|
it
|
|
:set satNum = all
|
|
:sat \x -> x > 0x4
|
|
:t it
|
|
it
|
|
:set satNum = foobar
|
|
:set satNum = 0
|
|
:set satNum = 3
|
|
:sat \x -> x > 0x4
|
|
:t it
|
|
it |