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

Pretty printing an LPS creates an invalid mCRL2 specification whenever there is an action is named P #1775

Open
mlaveaux opened this issue Jun 6, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@mlaveaux
Copy link
Member

mlaveaux commented Jun 6, 2024

The following mCRL2 specification:

act P;

init P.delta;

generates the following pretty printed linear process, which is invalid due to the double declaration of P as both an action and a process:

act  P;

proc P(s1: Pos) =
       (s1 == 2) ->
         P .
         P(s1 = 1)
     + delta;

init P(2);

This the following commands fail:

mcrl22lps why.mcrl2 | lpspp | mcrl22lps
declaration of both process and action P
@mlaveaux mlaveaux added the bug Something isn't working label Jun 6, 2024
@mlaveaux mlaveaux self-assigned this Jul 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant