Skip to content

Commit

Permalink
Merge branch 'develop' into refactor-proof-from-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
PetarMax authored Jun 20, 2024
2 parents ea96ae7 + 6126739 commit 3abe98a
Show file tree
Hide file tree
Showing 11 changed files with 134 additions and 423 deletions.
2 changes: 1 addition & 1 deletion deps/haskell-backend_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.10
v0.1.14
8 changes: 4 additions & 4 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
@@ -1,7 +1,7 @@
{
description = "K Framework";
inputs = {
haskell-backend.url = "github:runtimeverification/haskell-backend/v0.1.10";
haskell-backend.url = "github:runtimeverification/haskell-backend/v0.1.14";
nixpkgs.follows = "llvm-backend/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
llvm-backend = {
Expand Down
2 changes: 1 addition & 1 deletion pyk/docs/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euxo pipefail

SPHINX_VERSION=7.2.6
SPHINX_VERSION=7.3.7

DOCS_DIR=$(realpath $(dirname $0))
API_DIR=$DOCS_DIR/api
Expand Down
37 changes: 7 additions & 30 deletions pyk/flake.lock

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

5 changes: 2 additions & 3 deletions pyk/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
description = "Application packaged using poetry2nix";

inputs = {
rv-utils.url = "github:runtimeverification/rv-nix-tools";
nixpkgs.follows = "rv-utils/nixpkgs";
nixpkgs.url = "github:NixOS/nixpkgs";
poetry2nix = {
url =
"github:nix-community/poetry2nix/626111646fe236cb1ddc8191a48c75e072a82b7c";
Expand All @@ -12,7 +11,7 @@
flake-utils.follows = "poetry2nix/flake-utils";
};

outputs = { self, nixpkgs, flake-utils, rv-utils, poetry2nix }:
outputs = { self, nixpkgs, flake-utils, poetry2nix }:
{
# Nixpkgs overlay providing the application
overlay = final: prev:
Expand Down
220 changes: 109 additions & 111 deletions pyk/poetry.lock

Large diffs are not rendered by default.

143 changes: 0 additions & 143 deletions pyk/src/pyk/proof/parallel.py

This file was deleted.

12 changes: 8 additions & 4 deletions pyk/src/tests/integration/kore/test_kore_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,20 @@ def state(n: int) -> State:
term=term(3),
rule_id='ae0c978867ef4cc5cbfbadf7be2ff55e30e59465697ceaffa1d9fd5343a21fc6',
rule_substitution={
EVar('GCC', SORT_GENERATED_COUNTER_CELL): EVar("Var'Unds'DotVar0", SORT_GENERATED_COUNTER_CELL),
EVar('K', SORT_K): EVar("Var'Unds'DotVar1", SORT_K),
EVar('GCC', SORT_GENERATED_COUNTER_CELL): EVar(
"RuleVar'Unds'DotVar0", SORT_GENERATED_COUNTER_CELL
),
EVar('K', SORT_K): EVar("RuleVar'Unds'DotVar1", SORT_K),
},
),
State(
term=term(4),
rule_id='37a544ff4b6da9b4fb839f86d2ad51b770bcaf3dd578b716c38cf0da33458374',
rule_substitution={
EVar('GCC', SORT_GENERATED_COUNTER_CELL): EVar("Var'Unds'DotVar0", SORT_GENERATED_COUNTER_CELL),
EVar('K', SORT_K): EVar("Var'Unds'DotVar1", SORT_K),
EVar('GCC', SORT_GENERATED_COUNTER_CELL): EVar(
"RuleVar'Unds'DotVar0", SORT_GENERATED_COUNTER_CELL
),
EVar('K', SORT_K): EVar("RuleVar'Unds'DotVar1", SORT_K),
},
),
),
Expand Down
Loading

0 comments on commit 3abe98a

Please sign in to comment.