Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interpreter was calling the wrong solver for w4_offline_smtlib2 #1688

Merged
merged 4 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ jobs:
- shell: bash
run: .github/ci.sh zip_dist_with_solvers $NAME-with-solvers

- if: matrix.ghc == '8.10.7'
- if: matrix.ghc == '8.10.7' && ${{ !github.event.pull_request.head.repo.fork }}
shell: bash
env:
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: .github/ci.sh sign $NAME.tar.gz

- if: matrix.ghc == '8.10.7'
- if: matrix.ghc == '8.10.7' && ${{ !github.event.pull_request.head.repo.fork }}
shell: bash
env:
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }}
Expand Down
2 changes: 1 addition & 1 deletion src/SAWScript/Interpreter.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ primitives = Map.fromList
[ "Write the current goal to the given file in SMT-Lib2 format." ]

, prim "w4_offline_smtlib2" "String -> ProofScript ()"
(pureVal offline_smtlib2)
(pureVal w4_offline_smtlib2)
Current
[ "Write the current goal to the given file in SMT-Lib2 format." ]

Expand Down