You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Want to first say I love the project. I came across a scenario where I wanted to add a finite state machine and realized there wasn't support for it. I don't know if this is something of interest but just wanted to bring it up.
The text was updated successfully, but these errors were encountered:
The tools mentioned above come close but are not quite what I was thinking. One thing that I find very helpful for FSMs are the ability to show which input led to that state.
If I wanted to make a state machine for a stoplight I'd type something like:
green -> yellow
yellow -> red
red -> green
Using the planar graph support that would yield me:
Which is very close to what I want, but I'd like to specify the inputs leading to the state by doing something like:
green -> yellow : 50 seconds
yellow -> red: 8 seconds
red -> green: 32 seconds
and then get this:
You can ignore the syntax on the second example, I was just giving a random example. What do you think of that?
Want to first say I love the project. I came across a scenario where I wanted to add a finite state machine and realized there wasn't support for it. I don't know if this is something of interest but just wanted to bring it up.
The text was updated successfully, but these errors were encountered: