Skip to content

Commit

Permalink
Update dependency: deps/hs-backend-booster_release (#3903)
Browse files Browse the repository at this point in the history
Co-authored-by: devops <[email protected]>
  • Loading branch information
rv-jenkins and devops authored Jan 16, 2024
1 parent 278296b commit 938fa4d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion deps/hs-backend-booster_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a673bb55858eced177f21f331e29db96323c5af0
98e9b260467ebcc85749168f7d0841ed11025af9
14 changes: 7 additions & 7 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
inputs = {
haskell-backend.url = "github:runtimeverification/haskell-backend/ca05f14b7957fec9f2a5ab3444cae01c5a76f12f";
booster-backend = {
url = "github:runtimeverification/hs-backend-booster/a673bb55858eced177f21f331e29db96323c5af0";
url = "github:runtimeverification/hs-backend-booster/98e9b260467ebcc85749168f7d0841ed11025af9";
inputs.nixpkgs.follows = "haskell-backend/nixpkgs";
inputs.haskell-backend.follows = "haskell-backend";
inputs.stacklock2nix.follows = "haskell-backend/stacklock2nix";
Expand Down
2 changes: 1 addition & 1 deletion hs-backend-booster/src/main/native/hs-backend-booster
Submodule hs-backend-booster updated 53 files
+2 −2 README.md
+49 −0 library/Booster/Builtin.hs
+6 −1 library/Booster/Definition/Ceil.hs
+13 −0 library/Booster/JsonRpc.hs
+98 −64 library/Booster/Pattern/ApplyEquations.hs
+15 −2 library/Booster/Pattern/Bool.hs
+18 −10 library/Booster/Pattern/Rewrite.hs
+25 −1 library/Booster/Pattern/Util.hs
+2 −2 library/Booster/Syntax/ParsedKore/Internalise.hs
+9 −2 scripts/integration-tests.sh
+9 −0 test/rpc-integration/resources/compute-ceil.k
+7 −0 test/rpc-integration/resources/compute-ceil.kompile
+0 −1,504 test/rpc-integration/resources/existentials.kore
+25 −0 test/rpc-integration/resources/questionmark-vars.k
+4 −0 test/rpc-integration/resources/questionmark-vars.kompile
+20 −0 test/rpc-integration/resources/simplify.k
+9 −25 test/rpc-integration/test-compute-ceil/response-evaluate-g.booster-dev
+10 −8 test/rpc-integration/test-compute-ceil/state-evaluate-g.execute
+2 −2 test/rpc-integration/test-internalise-symbols/state-incorrect-argument-sort.execute
+94 −0 test/rpc-integration/test-questionmark-vars/README.md
+121 −0 test/rpc-integration/test-questionmark-vars/response-one-ques.booster-dev
+121 −0 test/rpc-integration/test-questionmark-vars/response-one-ques.kore-rpc-dev
+124 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-external.booster-dev
+124 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-external.kore-rpc-dev
+172 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-internal-with-counter.booster-dev
+172 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-internal-with-counter.kore-rpc-dev
+172 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-internal.booster-dev
+172 −0 test/rpc-integration/test-questionmark-vars/response-two-ques-internal.kore-rpc-dev
+79 −0 test/rpc-integration/test-questionmark-vars/state-one-ques.execute
+82 −0 test/rpc-integration/test-questionmark-vars/state-two-ques-external.execute
+98 −0 test/rpc-integration/test-questionmark-vars/state-two-ques-internal-with-counter.execute
+92 −0 test/rpc-integration/test-questionmark-vars/state-two-ques-internal.execute
+50 −0 test/rpc-integration/test-simplify/README.md
+26 −0 test/rpc-integration/test-simplify/response-evaluate-two-stage-fail.json
+19 −0 test/rpc-integration/test-simplify/response-evaluate-two-stage.json
+1 −1 test/rpc-integration/test-simplify/response-evaluate-under-function.json
+92 −7 test/rpc-integration/test-simplify/response-if-then-else-arity-error.json
+79 −8 test/rpc-integration/test-simplify/response-if-then-else-sort-error.json
+37 −0 test/rpc-integration/test-simplify/response-not-and-false1.json
+37 −0 test/rpc-integration/test-simplify/response-not-and-false2.json
+26 −0 test/rpc-integration/test-simplify/response-simplification-loop.json
+23 −7 test/rpc-integration/test-simplify/response-symbolic-first-of-3.json
+23 −7 test/rpc-integration/test-simplify/response-with-logging.json
+20 −0 test/rpc-integration/test-simplify/state-evaluate-two-stage-fail.simplify
+20 −0 test/rpc-integration/test-simplify/state-evaluate-two-stage.simplify
+1 −1 test/rpc-integration/test-simplify/state-evaluate-under-function.simplify
+10 −10 test/rpc-integration/test-simplify/state-if-then-else-eval.simplify
+54 −0 test/rpc-integration/test-simplify/state-not-and-false1.simplify
+54 −0 test/rpc-integration/test-simplify/state-not-and-false2.simplify
+20 −0 test/rpc-integration/test-simplify/state-simplification-loop.simplify
+1 −1 unit-tests/Test/Booster/Fixture.hs
+2 −2 unit-tests/Test/Booster/Pattern/ApplyEquations.hs
+21 −0 unit-tests/Test/Booster/Pattern/Util.hs

0 comments on commit 938fa4d

Please sign in to comment.