-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull in fix for #872 and add a test case.
- Loading branch information
1 parent
9b51cd1
commit 0e52056
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
Submodule saw-core
updated
2 files
+10 −4 | saw-core-what4/src/Verifier/SAW/Simulator/What4.hs | |
+21 −19 | saw-core-what4/src/Verifier/SAW/Simulator/What4/FirstOrder.hs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// test case for github issue https://github.com/GaloisInc/saw-script/issues/872 | ||
|
||
prove_print z3 {{ \(x:[0]) y z -> x * (y + z) == x*y + x*z }}; | ||
print "z3 OK"; | ||
|
||
prove_print w4 {{ \(x:[0]) y z -> x * (y + z) == x*y + x*z }}; | ||
print "w4 OK"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set -e | ||
|
||
$SAW test.saw |