|
|
|
|
|
by wglb
6190 days ago
|
|
Mine as well. State machines early on. However, immediately went into computer programming but that stuck with me. If a person reads GoF carefully, they talk about it there. Also, UML has a whole state machine concept segment and Uncle Bob wrote a package years ago to handle state machines. I wonder if programmers rely too much on RE for problems that would be best handled by FSM. Excellent article, excellent software. |
|
So, for an un-specious response: FSMs are well suited to stream processing, while REs do well with block processing. (And are generally implemented by compilation into FSMs, anyway.) FSMs also do well as program logic/control structures, often clarifying the underlying system.