Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct how pyk loads seqstrict attribute #4641

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions pyk/regression-new/seqstrict-predicate/1.test.out
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<k>
10 ~> .K
</k>
<generatedTop>
<k>
10 ~> .K
</k>
<generatedCounter>
0
</generatedCounter>
</generatedTop>
1 change: 0 additions & 1 deletion pyk/regression-new/skipped
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ rand
rangemap-tests-llvm
rat
search-bound
seqstrict-predicate
set-symbolic-tests
set_unification
spec-rule-application
Expand Down
2 changes: 1 addition & 1 deletion pyk/src/pyk/kast/att.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class Atts:
PROJECTION: Final = AttKey('projection', type=_NONE)
RIGHT: Final = AttKey('right', type=_ANY) # RIGHT and RIGHT_INTERNAL on the Frontend
SIMPLIFICATION: Final = AttKey('simplification', type=_ANY)
SEQSTRICT: Final = AttKey('seqstrict', type=_NONE)
SEQSTRICT: Final = AttKey('seqstrict', type=_ANY)
SORT: Final = AttKey('org.kframework.kore.Sort', type=_ANY)
SOURCE: Final = AttKey('org.kframework.attributes.Source', type=_PATH)
STRICT: Final = AttKey('strict', type=_ANY)
Expand Down
Loading