Tagged Questions

acronym for Finite State Machine

learn more… | top users | synonyms

13
votes
8answers
5k views

Does C# include finite state machines?

I've recently read about the boost::statechart library (finite state machines) and I loved the concept. Does C# have a similar mechanism ? Or can it be implemented using a specific design pattern?
10
votes
9answers
5k views

Python state-machine design

Related to this SO question (C state-machine design), could you SO folks share with me (and the community!) your Python state-machine design techniques? Update3: At the moment, I am going for an ...
10
votes
4answers
2k 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 implements a state ...
9
votes
6answers
2k 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.g implementation of ...
7
votes
2answers
842 views

Designing high-performance State Machine in Java

I am in the process of starting to write a Java library to implement high-performance Finite State Machines. I know there are a lot of libraries out there, but I want to write my own from scratch, as ...
7
votes
7answers
543 views

What is the Pythonic way to implement a simple FSM?

Yesterday I had to parse a very simple binary data file - the rule is, look for two bytes in a row that are both 0xAA, then the next byte will be a length byte, then skip 9 bytes and output the given ...
7
votes
7answers
3k 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’ll never try to use ...
6
votes
1answer
148 views

How to access state during transitions in Akka FSM

I am using Akka FSM for handling state in my Actor. I want some actions to be performed every time a transition to a certain state occurs, no matter which state the transition was made from. After ...
6
votes
3answers
142 views

How to create a Perl subroutine that accepts a block of code

I have a set of subroutines that look like this: sub foo_1($) { my $name = shift; my $f; run_something(); open($f, $name) or die ("Couldn't open $name"); while (<$f>) { ...
6
votes
2answers
251 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 same inputs they will ...
5
votes
2answers
102 views

Finite State Machine parsing

This picture depicts finite state machine parsing "nice" string. The question is how would it look like in JS code? EDIT Picture from link above:
5
votes
3answers
945 views

What is the best practice for a hierarchical state machine using the state pattern?

I'm about to implement a hierarchical state machine in C# using the state pattern. As a guide I'm using this example. The example doesn't provide an answer regarding hierarchical states though. ...
5
votes
8answers
3k 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?
4
votes
3answers
150 views

State Pattern C# with previous states

I am new to the state pattern implementation in C#, could you provide some info on how you implement it. I am refactoring a state machine in C# using the state pattern. Currently my state machine ...
4
votes
3answers
380 views

Implementing a FSM in VHDL

Just wondering if I'm implementing a finite state machine in VHDL whether or not I need to state what all of the outputs are in every possible state? Even if I know that some outputs won't change from ...
4
votes
7answers
1k views

FSM data structure design

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 help. Appreciate if someone could ...
4
votes
1answer
1k 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 smartest way to validate an ...
4
votes
4answers
1k 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 other languages are ...
3
votes
1answer
110 views

An attempt at non-deterministic finite state machine (C++), is a static std::map a good idea?

I need to implement a non-deterministic FSM, so I came up with the idea of defining an FSM class that holds states and transitions (that may or may not depend on the states of other FSMs, but must ...
3
votes
4answers
162 views

State Machine - Structure To Hold States, Events and pFuncs

If I make a state machine and want to use an interface like this: AddState ( state1, state2, Key_UP ); AddEvent ( Key_UP ); AddEventFunction ( Key_UP, &UP_Function); AddStateFunction ( state1, ...
3
votes
2answers
225 views

Encoding state machines in VHDL

I'm looking into creating a system in VHDL that filters an image after receiving it through an FTDI usb-to-serial device. As part of this, I believe I've identified the states that my CPLD should be ...
3
votes
2answers
422 views

FST (Finite-state transducers) Libraries, C++ or java

I have a problem to solve using FSTs. Basically, I'll make a morphological parser, and in this moment i have to work with large transducers. The performance is The Big issue here. Recently, i worked ...
3
votes
1answer
153 views

Syntax for Describing DFA or NFA

Do there exists any Standard Syntax for Describing the Transition Table for an NFA or DFA ?
3
votes
1answer
512 views

How to parse template languages in Ragel?

I've been working on a parser for simple template language. I'm using Ragel. The requirements are modest. I'm trying to find [[tags]] that can be embedded anywhere in the input string. I'm trying ...
3
votes
3answers
1k views

Finite State Machine parser

I would like to parse a self-designed file format with a FSM-like parser in C++ (this is a teach-myself-c++-the-hard-way-by-doing-something-big-and-difficult kind of project :)). I have a tokenized ...
3
votes
3answers
1k 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 as use them to effect ...
2
votes
3answers
1k views

GUI for Creating Visual State Machine

I want to create an application GUI that allows a user to create a visual state machine. The interface would work similarly to Microsoft's Visio product, where the user adds blocks or circles ...
2
votes
3answers
257 views

Best way to generate java with python?

Whats the best way to generate java from python? I want to write a decorator that generates java code to call a json version of a function (I can use existing decorators to export the json api). ...
2
votes
2answers
1k views

Finite State Machine (FSM) and Android's Java

i'm willing to develop a soccer game for Android. Because the complexity of the AI, i really think i need to design it using a FSM (Finite State Machine) and not with a monster switch. Googling ...
2
votes
1answer
215 views

C++ FSM design and ownership

I would like to implement a FSM/"pushdown automaton" parser for this syntax: http://stackoverflow.com/questions/3025293/c-general-parser-with-scopes-and-conditionals which has already been "lexed" ...
2
votes
2answers
398 views

Is using a finite state machine a good design for general text parsing?

I am reading a file that is filled with hex numbers. I have to identify a particular pattern, say "aaad" (without quotes) from it. Every time I see the pattern, I generate some data to some ...
2
votes
2answers
1k views

Why is {a^nb^n | n >= 0} not regular?

In a CS course I'm taking there is an example of a language that is not regular: {a^nb^n | n >= 0} I can understand that it is not regular since no Finite State Automaton/Machine can be written ...
2
votes
2answers
226 views

Need help with C++ templates

I'm fairly sure this is a template question, since I can't seem to solve it any other way - but non-template solutions are also welcome. A Finite State Machine has a number of program States and each ...
2
votes
2answers
312 views

How to connect two state circles with an arrow in tkinter?

I am currently writing a fsm editor with tkinter. But, I stuck on connecting two states. I have two questions: 1) How can make the transition arrow growable according to mouse movement? 2) How can I ...
2
votes
6answers
4k 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 capture the ...
1
vote
1answer
40 views

How to prevent message reordering using PriorityExecutorBasedEventDrivenDispatcher?

My Akka FSM actor has the need to prioritize messages dependent on type. To be specific, the actor receives messages in one of these categories, in prioritized order: Messages that triggers state ...
1
vote
1answer
59 views

Terminate gen_fsm if no event come

I want my FSM to terminate any time event doesn't come after specified amout of time in every state. I can achieve such a scenario only in case there is no event after FSM creation by specifing ...
1
vote
1answer
94 views

VHDL 'generate' FSM states

I have a variable number of modules linked to another module via a signal bus : std_logic_vector(NUM-1 downto 0), with each component using 8 bits, so that: bus(7 downto 0) = first module bus(15 ...
1
vote
2answers
118 views

VHDL and reaction time of finite state machine?

This is a problem I regularly bump into - hopefully someone can clarify to me the right way to think about it! I can basically reduce my problem to this: I have a module, with input p_in, output ...
1
vote
0answers
187 views

Programming Finite State Machine [closed]

I'm studying Finite State Machine (FSM) in Python. I've found a lot of theory about FSM with google and books (example : Stein) and no "how to" programming (advanced) FSM in C or Python. Do you ...
1
vote
1answer
60 views

Setting Up A State in a FSM

I'm using an class based FSM for the first time and I'm a little confused on what the best practice is to set-up the initial state. I've added a FSM to my Screen class that I want to use to handle ...
1
vote
1answer
86 views

transition with same start/end in UML state diagram

I am new to UML, regrading FSM diagram, how to represent two transitions that lead to same state, for example, I'm in state1: when(event1)-->action1-->state2 ...
1
vote
1answer
168 views

drscheme - finite state machine

thanks to people at this great site I managed to put together code that is nearly complete and working. I have one final question. here is the code: (define (chartest ch) (lambda (x) ...
1
vote
2answers
179 views

Erlang gen_fsm transition to a new state

I have erlang gen_fsm, my first state: begin({Nick}, _From, State) -> {reply, true, next_state, State}. Then i have: next_state(_Event, _From, State) -> io:format("Test ...
1
vote
1answer
685 views

State diagram and Transition table for a Moore machine

I have drawn a mealey machine for this circuit, with two states, however I can't draw a Moore machine state diagram, I don't understand how to do this. The circuit is as follows : The circuit is a ...
1
vote
2answers
705 views

What are the best Python Finite State Machine implementations

These are the Python FSM Implementations I have found so far... Fysom - A slick FSM implementation that provides function callbacks for each state. Skip Montanero's FSM FSM with Decorators ...
1
vote
1answer
79 views

implementation of an Moore Automaton in digital electronics

in the wikipedia article about Moore Automatons it is said, that clocked digital circuits are a form of moore automatons. http://en.wikipedia.org/wiki/Moore_machine#Mechanism how about the other way ...
1
vote
3answers
232 views

Is it possible to write a self-interpreting FSM or Pushdown Automaton?

I'm sorry for this newbie question, but I need a quick answer to tell a friend if that's possible.
1
vote
3answers
211 views

Good design to build a whole program as a FSM?

I have built a parser using a FSM/Pushdown Automaton approach like here (and it works, well!): http://stackoverflow.com/questions/3176110/c-fsm-design-and-ownership It allows me to exit gracefully and ...
1
vote
3answers
623 views

Hierarchical state machine implementation in Erlang

I am planning a turn based game (a sort of board game), and the backend will probably be done in Erlang. The game logic part seems to be a fit for a hierarchical state machine, but I'm not sure about ...

1 2