Skip to content

Commit 622dc98

Browse files
rv-jenkinsrv-auditoranvacaru
authored
Update dependency: deps/k_release (#2661)
* deps/k_release: Set Version 7.1.181 * kevm-pyk/: sync poetry files pyk version 7.1.181 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.182 * kevm-pyk/: sync poetry files pyk version 7.1.182 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.183 * kevm-pyk/: sync poetry files pyk version 7.1.183 * flake.{nix,lock}: update Nix derivations * add CTermSymbolic instance to custom_step * bump dss timeout * Revert "bump dss timeout" This reverts commit 38b5866. * deps/k_release: Set Version 7.1.184 * kevm-pyk/: sync poetry files pyk version 7.1.184 * flake.{nix,lock}: update Nix derivations --------- Co-authored-by: devops <devops@runtimeverification.com> Co-authored-by: Andrei <16517508+anvacaru@users.noreply.github.com>
1 parent b69a4cf commit 622dc98

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.180
1+
7.1.184

flake.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "A flake for the KEVM Semantics";
33

44
inputs = {
5-
k-framework.url = "github:runtimeverification/k/v7.1.180";
5+
k-framework.url = "github:runtimeverification/k/v7.1.184";
66
nixpkgs.follows = "k-framework/nixpkgs";
77
flake-utils.follows = "k-framework/flake-utils";
88
rv-utils.follows = "k-framework/rv-utils";

kevm-pyk/poetry.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kevm-pyk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
[tool.poetry.dependencies]
1414
python = "^3.10"
1515
pathos = "*"
16-
kframework = "7.1.180"
16+
kframework = "7.1.184"
1717
tomlkit = "^0.11.6"
1818

1919
[tool.poetry.group.dev.dependencies]

kevm-pyk/src/kevm_pyk/kevm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
from pathlib import Path
3838
from typing import Final
3939

40+
from pyk.cterm import CTermSymbolic
4041
from pyk.kast.inner import KAst, Subst
4142
from pyk.kast.outer import KFlatModule
4243
from pyk.kcfg import KCFG
@@ -144,7 +145,7 @@ def _replace(term: KInner) -> KInner:
144145

145146
return CTerm(config=bottom_up(_replace, cterm.config), constraints=cterm.constraints)
146147

147-
def custom_step(self, cterm: CTerm) -> KCFGExtendResult | None:
148+
def custom_step(self, cterm: CTerm, _cterm_symbolic: CTermSymbolic) -> KCFGExtendResult | None:
148149
"""Given a CTerm, update the JUMPDESTS_CELL and PROGRAM_CELL if the rule 'EVM.program.load' is at the top of the K_CELL.
149150
150151
:param cterm: CTerm of a proof node.

0 commit comments

Comments
 (0)