Skip to content

Commit debad62

Browse files
rv-jenkinsrv-auditorgeo2agtrepta
authored
Update dependency: deps/haskell-backend_release (#4319)
~Blocked on runtimeverification/haskell-backend#3857 ~Blocked on runtimeverification/haskell-backend#3876 --------- Co-authored-by: devops <[email protected]> Co-authored-by: Georgy Lukyanov <[email protected]> Co-authored-by: Guy Repta <[email protected]>
1 parent 4d61ba8 commit debad62

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

deps/haskell-backend_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
88ef647ec106b3ba1612ea848a61ba3c2fd3f786
1+
b27210141c06c5698201dc3f1fabc90bd09ffe59

flake.lock

Lines changed: 4 additions & 4 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
@@ -1,7 +1,7 @@
11
{
22
description = "K Framework";
33
inputs = {
4-
haskell-backend.url = "github:runtimeverification/haskell-backend/88ef647ec106b3ba1612ea848a61ba3c2fd3f786";
4+
haskell-backend.url = "github:runtimeverification/haskell-backend/b27210141c06c5698201dc3f1fabc90bd09ffe59";
55
nixpkgs.follows = "llvm-backend/nixpkgs";
66
flake-utils.url = "github:numtide/flake-utils";
77
llvm-backend = {
Submodule haskell-backend updated 50 files

pyk/src/pyk/kore/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ def from_dict(dct: Mapping[str, Any]) -> ImpliesResult:
872872
predicate = dct.get('condition', {}).get('predicate')
873873
logs = tuple(LogEntry.from_dict(l) for l in dct['logs']) if 'logs' in dct else ()
874874
return ImpliesResult(
875-
valid=dct['satisfiable'],
875+
valid=dct['valid'],
876876
implication=kore_term(dct['implication']),
877877
substitution=kore_term(substitution) if substitution is not None else None,
878878
predicate=kore_term(predicate) if predicate is not None else None,

pyk/src/tests/unit/kore/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def test_execute(
178178
int_bottom,
179179
int_top,
180180
{'antecedent': kore(int_bottom), 'consequent': kore(int_top)},
181-
{'satisfiable': True, 'implication': kore(int_top)},
181+
{'valid': True, 'implication': kore(int_top)},
182182
ImpliesResult(True, int_top, None, None, ()),
183183
),
184184
)

0 commit comments

Comments
 (0)