On Saturday 12 September 2009 22:39:10 Peng Yu wrote:
> Hi,
>
> I have see some discussion on the implementation of finite state
> machine in python. Can somebody point to me the best way in implenting
> an FSM in python?
>
> http://code.activestate.com/recipes/146262/
You can go a long way with a
For simplistic FSMs, if you want to avoid hand-coding all the transitions,
actions etc., you could consider something like Libero (
http://www.cs.vu.nl/~eliens/documents/libero/lrintr.htm), although the last
I checked Libero didn't generate Python yet (but I believe there might be
similar options a
On Sep 12, 4:39 pm, Peng Yu wrote:
> Hi,
>
> I have see some discussion on the implementation of finite state
> machine in python. Can somebody point to me the best way in implenting
> an FSM in python?
>
> http://code.activestate.com/recipes/146262/
>
> Regards,
> Peng
I wrote an example of how
I have see some discussion on the implementation of finite
state machine in python. Can somebody point to me the best way
in implenting an FSM in python?
To offer a "best way" requires knowing more about what you're
trying to accomplish. Are you looking for just some fixed
states? are you lo