Tagged Questions

1
vote
4answers
122 views

Python graceful fail on int() call?

I have to make a rudimentary FSM in a class, and am writing it in Python. The assignment requires we read the transitions for the machine from a text file. So for example, a FSM …
4
votes
5answers
310 views

Finite State Machine and inter-FSM signaling

Recommendations for languages with native (so no FSM generation tools) support for state machine development and execution and passing of messages/signals. This is for telecoms, e. …
2
votes
3answers
172 views

Graphical Finite State Machine Editor

I am looking for a sophisticated graphical FSM editor that can export a model in a well-documented output format, like SCXML or similar. Can anybody recommend me a tool?
0
votes
2answers
71 views

How to Build finite state machine that show modulus 4 in binary

Can someone show me how to build a finite state machine that shows modulus 4 in binary?
3
votes
1answer
77 views

General proof of equivalence of two FSMs in finite time?

Does a general proof exist for the equivalence of two (deterministic) finite state machines that always takes finite time? That is, given two FSMs, can you prove that given the sam …
4
votes
3answers
321 views

implementing a state machine using the “yield” keyword

Is it feasible to use the yield keyword to implement a simple state machine as shown here. To me it looks like the C# compiler has done the hard work for you as it internally imple …
3
votes
1answer
446 views

Validating a finite state machine (using AASM) on Rails.

I'm using AASM by Rubyist to build a 4-step wizard for an AR object. According to the state of the object, there are different validations that need to be done. What is the smartes …
6
votes
7answers
601 views

Short example of regular expression converted to a state machine?

In the Stack Overflow podcast #36 (http://blog.stackoverflow.com/2009/01/podcast-36/), this opinion was expressed: Once you understand how easy it is to set up a state machine, you …
2
votes
7answers
232 views

FSM data structure design

Hi Folks, I want to write an FSM which starts with an idle state and moves from one state to another based on some event. I am not familiar with coding of FSM and google didn't he …
3
votes
5answers
280 views

RE -> FSM generator?

Given a regular expression, I'm looking for a package which will dynamically generate the code for a finite state machine that implements the RE. C/C++ and Python preferred, but o …
1
vote
5answers
662 views

State Machine Framework for JBoss/Java?

We are developing an application that involves a lot of different tests where each test lead the users to a number of steps. We are thinking of using a state machine framework to …
3
votes
2answers
714 views

Implementing event conditions in a C++ state machine

I'm using an hierarchical FSM for an embedded C++ application interface. I'd like to use small functions to determine whether certain inter-state events can be triggered, as well a …