Re: Finite state machine in python

2009-09-13 Thread Banibrata Dutta
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 to do it using Graphine a while back. Probably not the most efficient in the world

Re: Finite state machine in python

2009-09-13 Thread Hendrik van Rooyen
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 far

Finite state machine in python

2009-09-12 Thread Peng Yu
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 -- http://mail.python.org/mailman/listinfo/python-list

Re: Finite state machine in python

2009-09-12 Thread Tim Chase
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

Re: Finite state machine in python

2009-09-12 Thread CTO
On Sep 12, 4:39 pm, Peng Yu pengyu...@gmail.com 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