-
Notifications
You must be signed in to change notification settings - Fork 8
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
Invalid dependency resolution #572
Labels
Comments
treiher
added
the
specification
Related to specification package (e.g., specification parsing)
label
Feb 11, 2021
senier
pushed a commit
that referenced
this issue
Feb 27, 2021
This was referenced Mar 1, 2021
senier
pushed a commit
that referenced
this issue
Mar 2, 2021
senier
pushed a commit
that referenced
this issue
Mar 4, 2021
42 tasks
senier
pushed a commit
that referenced
this issue
Mar 6, 2021
senier
pushed a commit
that referenced
this issue
Mar 9, 2021
senier
pushed a commit
that referenced
this issue
Mar 10, 2021
senier
pushed a commit
that referenced
this issue
Mar 10, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Dependencies are not resolved correctly in some cases. This is true for the current parser as well as the new parser developed in #547:
When checking
In_P1
, the new parser yields:As can be seen, the dependency resolution yields
P2
,P3
,P4
,P1
,In_P4
, whereas the correct order would beP4
,P1
,P2
,P3
,In_P1
orP1
,P4
,P2
,P3
,In_P1
(i.e. post-order DFS).The current parser has the same issue (but different subsequent errors):
The text was updated successfully, but these errors were encountered: