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 model is seen by LF to have cyclic dependencies, whereas the modes break that cycle and the model should be accepted instead.
target C reactor R { input in: bool output out: bool reaction(in) -> out {= lf_set(out, 0.0f); =} } main reactor { r = new R() initial mode A { reaction(r.out) {==} } mode B { reaction(startup) -> r.in {= lf_set(r.in, true) =} } }
Both modes are unconnected and it can never be the case that the reaction in mode A happens in the same tick before the reaction in mode B.
The text was updated successfully, but these errors were encountered:
a-sr
No branches or pull requests
The following model is seen by LF to have cyclic dependencies, whereas the modes break that cycle and the model should be accepted instead.
Both modes are unconnected and it can never be the case that the reaction in mode A happens in the same tick before the reaction in mode B.
The text was updated successfully, but these errors were encountered: