We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
mlaveaux
No branches or pull requests
The following mCRL2 specification:
generates the following pretty printed linear process, which is invalid due to the double declaration of P as both an action and a process:
This the following commands fail:
The text was updated successfully, but these errors were encountered: