Skip to content

Commit

Permalink
Changed github action for installing z3 to v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oskari1 committed Sep 8, 2023
1 parent 9e62736 commit 1c51da1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/z3_trace_log_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fetch-depth: 0 # needed, see GitHub Action "Changed Files"

- name: Install Z3
uses: pavpanchekha/setup-z3@v1.3 # see GitHub Action "Install Z3"
uses: pavpanchekha/setup-z3@v1.2.2 # see GitHub Action "Install Z3"
with:
version: ${{ matrix.z3version }}

Expand Down
6 changes: 3 additions & 3 deletions smt-problems/small_forall_example_2.smt2
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)

0 comments on commit 1c51da1

Please sign in to comment.