-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -28,16 +28,12 @@ jobs: | |
fetch-depth: 0 # needed, see GitHub Action "Changed Files" | ||
|
||
- name: Install Z3 | ||
if: ${{ matrix.versions.installz3 }} == 'v1.3' | ||
uses: pavpanchekha/[email protected] # see GitHub Action "Install Z3" | ||
with: | ||
version: ${{ matrix.versions.z3 }} | ||
|
||
- name: Install Z3 | ||
if: ${{ matrix.versions.installz3 }} == '1.2.2' | ||
if: ${{ matrix.versions.installz3 }} == 'v1.3' | ||
uses: pavpanchekha/[email protected] # see GitHub Action "Install Z3" | ||
if: ${{ matrix.versions.installz3 }} == '1.2.2' | ||
with: | ||
version: ${{ matrix.versions.z3 }} | ||
version: ${{ matrix.versions.z3 }} | ||
|
||
# this fetches all changed (added/modified) smt2 files in the repository | ||
- name: Fetch changed smt2 files | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(declare-const x (_ BitVec 64)) | ||
(declare-const y (_ BitVec 64)) | ||
(assert (forall ((x (_ BitVec 64)) (y (_ BitVec 64))) | ||
(= (bvsub (bvadd x y) (bvshl (bvand x y) (_ bv1 64))) (bvxor x y)))) | ||
(declare-const z (_ BitVec 64)) | ||
(assert (forall ((x (_ BitVec 64)) (z (_ BitVec 64))) | ||
(= (bvsub (bvadd x z) (bvshl (bvand x z) (_ bv1 64))) (bvxor x z)))) | ||
|
||
(check-sat) |