-
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
7 additions
and
4 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 |
---|---|---|
|
@@ -58,8 +58,11 @@ jobs: | |
tar -cjf logs_z3_v_${z3_v_clean}.tar.bz2 logs/ | ||
echo "::set-output name=logs_path::$(realpath logs_z3_v_${z3_v_clean}.tar.bz2)" | ||
env: | ||
MATRIX_Z3VERSION: ${z3_v_clean} | ||
|
||
- name: Upload build artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: logs_z3_v_${{ matrix.z3version }} | ||
name: "logs_z3_${{ steps.run_z3_and_upload.env.MATRIX_Z3VERSION }}.tar.bz2" | ||
path: ${{ steps.run_z3_and_upload.outputs.logs_path }} |
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) |