Skip to content

Commit a5b98f5

Browse files
rv-jenkinsrv-auditorehildenb
authored
Update dependency: deps/k_release (#113)
- Includes update to how to build an `APRProofShow` so that it doesn't need a `KPrint` anymore, just a `KDefinition`. runtimeverification/k#4808 --------- Co-authored-by: devops <[email protected]> Co-authored-by: Everett Hildenbrandt <[email protected]>
1 parent 81d5723 commit a5b98f5

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.256
1+
7.1.257

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.79
1+
0.1.80

poetry.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.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "kriscv"
7-
version = "0.1.79"
7+
version = "0.1.80"
88
description = "K tooling for the RISC-V architecture"
99
authors = [
1010
"Runtime Verification, Inc. <[email protected]>",
@@ -19,7 +19,7 @@ riscv-semantics = "kriscv.kdist.plugin"
1919

2020
[tool.poetry.dependencies]
2121
python = "^3.10"
22-
kframework = "7.1.256"
22+
kframework = "7.1.257"
2323
filelock = "^3.14.0"
2424
pyelftools = "^0.26"
2525
pyyaml = "^6.0.1"

src/tests/integration/test_prove.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ def test_specs(
6565
)
6666

6767
proof_show_file = temp_dir / f'{spec_file.stem}-proof.txt'
68-
proof_show_lines = APRProofShow(symtools.kprove).show(proof, nodes=[node.id for node in proof.kcfg.nodes])
68+
proof_show_lines = APRProofShow(symtools.kprove.definition).show(
69+
proof, nodes=[node.id for node in proof.kcfg.nodes]
70+
)
6971
proof_show_file.write_text('\n'.join(proof_show_lines))
7072

7173
# Then

0 commit comments

Comments
 (0)