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
can combine multiple concurrent histories of the state machine execution into the same image frames. See function for more details.
116
+
117
+
118
+
# Lower Level Visualization tools
119
+
92
120
## Animate Asyncronous State Machine Transitions
93
121
94
122
The following example function shows several state machines that were run asyncronously can be synchronously animated as separate frames (see below for single frame with multiple information):
@@ -149,30 +177,6 @@ A closely related function
149
177
animateStateMachineHistoryByTime
150
178
```
151
179
152
-
Multiple state machines can be visualized together
153
-
```julia
154
-
using Graphs, FunctionalStateMachine
155
-
156
-
#...
157
-
158
-
# start multiple concurrent FSMs (this is only one)
159
-
## they are likely interdependent
160
-
statemachine =StateMachine{Nothing}(next=foo!)
161
-
whilestatemachine(nothing, recordhistory=true); end
162
-
163
-
# add all histories to the `hists::Dict` as follows
0 commit comments