Finite State Machine is a mathematical abstraction used as a behaviour model composed of a finite number of states, their transitions and functions to design digital logic or computer programs.

learn more… | top users | synonyms

0
votes
0answers
16 views

In FSMs, can we determine which variable is susceptible to evolve a system to a certain state?

For a given state of a system, how to determine which variable amongst many variables that is most susceptible to evolve the system to a certain state? It is for determining the variable ordering of ...
0
votes
0answers
9 views

Embed user action after processing every character in Ragel

I'm using Ragel to evaluate FSAs, and I need to have a segment of code run after every evaluation of a character in the input. Ragel has operators that allow user actions to be embedded on transitions ...
3
votes
0answers
28 views

How to get Ragel EOF actions working

I'm working with Ragel to evaluate FSAs, and I want to embed a user action that runs whenever my machine finishes testing the input. I need this action to run regardless of whether or not the machine ...
-3
votes
0answers
31 views

Turing machines misunderstanding [closed]

I was having a hard time understanding and solving this question that wants me to show the final tape and figuring out if whether or not the turning machine accepts it or not. I have a list of 20 ...
1
vote
0answers
32 views

Is there a programming language that only has the power of a deterministic push-down automata, and no more?

Some programming problems don't require the full power of a Turing machine to solve. They can be solved with much less power. I am seeking a programming language with lesser power. Does there exist a ...
3
votes
3answers
93 views

State pattern using methods

I'm trying to implement a simple state machine based on a modified version of the state pattern using methods as states instead of classes, something like this: private Action<Input> ...
0
votes
0answers
105 views

How to draw Finite State Machine diagram during runtime?

Is there some nice library for .NET and WPF for drawing graphs representing Finite State Machines? If no, do you know any tutorial on how to implement this? I am writing an application that has to ...
-2
votes
1answer
120 views

Finite state machine rules [closed]

I'm currently building a finite state machine implementation where the states all will be classes implementing a specific interface: public interface ISolidState { void Entering(object context); ...
2
votes
1answer
94 views

Processing an event list in C#

I am implementing a state machine in C# and i am running into a problem. I have an event log, containing events and timestamps. When processing this, i get output with the following format: Timestamp ...
0
votes
0answers
62 views

Python Issue with Tree-Type Structure [duplicate]

I am creating a finite-state automata (FSA), which is basically a tree. Each letter in a word constitutes a node (State). A string of letters constitutes a path through the FSA, and paths can overlap. ...
2
votes
1answer
122 views

Design pattern for waiting for user interaction in iOS?

I'm developing a BlackJack game for iOS. Keeping track of the current state and what needs to be done is becoming difficult. For example, I have a C++ class which keeps track of the current Game: ...
0
votes
0answers
57 views

FSP concurrent programming issue - how to perform calculation without exceeding maximum number of Transitions in LTSA tool?

im having a slight problem here. I am using a LTSA tool for FSP language . The issue with that tool is that you can not exceed a maximum number of 62 ( i believe ) transition otherwise it will not ...
1
vote
2answers
66 views

Apparent trouble with behavior of substring in JavaScript

I am writing a recursive algorithm to build a finite state automaton by parsing a regular expression. The automaton iterates through the expression, pushing characters to a stack and operators to an ...
0
votes
2answers
102 views

Function pointers in a Finite State Machine

I'm having trouble using function pointers to implement a finite state machine. I keep getting the error: b.cpp: In function ‘int main()’: b.cpp:51: error: ‘have0’ was not declared in this scope ...
0
votes
0answers
71 views

Sequential circuit design with FSM

I have the following question: A sequential circuit is to be designed in which the circuit output zv is a function of only the current input xv and the three previous inputs xv-1, xv-2, and xv-3. A ...
1
vote
0answers
53 views

Sequential circuit design

A sequential circuit has two inputs, x1 and x2. Five-bit sequences representing decimal digits coded in the 2-out-of-5 code appear from time to time on line a:,, synchronized with a clock pulse on a ...
2
votes
3answers
251 views

What is a Finite State Machine and What is it Used For? [closed]

Recently, I've begun doing some research into Finite State Machines in JavaScript and I even found a library that makes them easier to implement. While I think I've grasped the idea that a state ...
0
votes
2answers
91 views

“Passive” state machine - correct term?

I am looking for the correct term of a logical construct that I would call "passive state machine". Imagine this embedded device: Some lower program layer handles a chip card reader and reacts on the ...
0
votes
0answers
95 views

Is there a library for graphs using Backbone models?

I've been working on a project where I want to have a flow of events. The flow of events is a sort of finite state machine except that the states and transitions aren't initially known. For example: ...
1
vote
2answers
518 views

Unity Performance - Coroutines vs FSM on update

I just started studying Unity scripting and I'm having a hard time to understand why some people prefer coroutines over state machines. I do understand that the code might be more readable for some ...
1
vote
1answer
44 views

What alternatives are there to modelling complex behaviour with finite state machines? [closed]

I have read about a lot of disadvantages of using finite state machines but haven't really seen any alternative patterns for modelling complex behaviour suggested- are there any?
1
vote
1answer
43 views

Is there a methodology for designing state machines for software? [closed]

Is there a methodology for translating behavioural requirements into states (super and sub), actions, transitions, and guards?
0
votes
1answer
68 views

How do I create dynamic definitions for state machine based on user defined data in DB

I am trying to write an application that will allow users to manage workflows using the State Machine gem but I am not sure how to proceed in allowing users to define their own state machines using ...
0
votes
2answers
107 views

Cricket as a state machine

I'm creating a cricket manager stats game. I need to create a ball-by-ball simulation of the game. The game/ball outcome will be influenced by player stats and other external factors like weather or ...
1
vote
1answer
59 views

How to create a union of FSTs from an FST archive (FAR)?

I currently have a (natural language) corpus, and these are the steps already taken: Generated the symbol table after concatenating the corpus into one big file: $ ngramsymbols <corpus.txt ...
1
vote
1answer
159 views

Undesiderated 1-bit latch (VHDL)

I'm programming a N-bit non-restoring divider, but I faced a little problem. I have an Operative Part (combinatorial) and a Control Part (Finite State Machine). The Control Part has a 2 processes ...
4
votes
3answers
125 views

How to realize parsing of own html tags in text

I have task to realize own tags that making text bold, underline or strikethrough with any nesting. Like a *bold text* _underlinetext_ -strikethrough- Also I need to make own hyperlink like a ...
1
vote
1answer
83 views

Ember StateManager not reflecting currentState accurately

I'm starting to build a very basic Ember.StateManager and having a problem with obtaining an accurate currentState. My understanding is that by the time a state's enter callback is run, ...
0
votes
2answers
498 views

Can a DFA have epsilon/lambda transitions?

Can´t find anything affirmative about it. And a NFA with any epsilon transition is a epsilon-NFA ? Thanks.
0
votes
1answer
164 views

Drawing Finite State Machine (FSM) for finding tokens using given Microsyntax

I'm trying to draw a FSM for finding tokens using given Microsyntax microsyntax // Uses .Net regular expression syntax. Identifier <|[a-zA-Z][\w_.]* IntegerValue <|\d+ // real values must ...
3
votes
4answers
190 views

State machine representation

I want to implement the GUI as a state machine. I think there are some benefits and some drawbacks of doing this, but this is not the topic of this questions. After some reading about this I found ...
0
votes
1answer
45 views

State machine reflexive transition

In WF 4.0 a reflexive transition does not cause the state entry actions to re-run if the transition happens. In my opinion this is not a transition, but a contained behaviour. A reflexive transition ...
3
votes
1answer
155 views

Is this a good implementation of a loop in Prolog?

First of all, let me tell you that this happens to be the first time I ask something here, so if it's not the right place to do so, please forgive me. I'm developing a rather complex software that ...
1
vote
0answers
109 views

Queue Automata can simulate any Pushdown Automata?

I'm working on a theory assignment, and this question really got me thinking. The question reads: Show that any push-down automata can be simulated by a queue automata. Now, Initially I thought this ...
2
votes
2answers
426 views

Implementing a State Machine in Angular.js to control routing

Can anyone help me with integrating a state machine to control routing? What's the best method to do this? Create a service? I need to basically intercept every $location request, run the state ...
0
votes
2answers
146 views

How to represent repeating character in NFA/DFA

I am in the process of writing a parser to parse a structured text file containing UN EDIFACT codes list. To do this I have written a generic state machine in C# that I want to use to create the ...
1
vote
2answers
384 views

How to get current state from bbv.Common.StateMachine(appcelerator) class?

bbv.Common.StateMachine class is the best state machine code I have ever seen. But it lacks just one thing: getting current state. This is an order tracking system: fsm = new ...
2
votes
2answers
105 views

How can I extract this variable's initialization out of my object's constructor?

I'm writing my first Go program, an SMTP server, and I thought that using a FSM to represent the state transitions of the network protocol would be elegant. I really liked this haskell SMTP FSM ...
0
votes
1answer
175 views

Finite State Machine in Assembly (MASM615)

I am trying to implement a FSM in the aforementioned version of assembly, but can't seem to get far without knowing which approach to take. Does anyone out there have an implementation they're willing ...
-3
votes
1answer
121 views

logical, Finite State Machine

I am trying to draw out a finite state machine (start, next state etc.) how can I draw this using only 7 states? I wrote out what the table looks like, this inputing characters into tokens Table: ...
0
votes
1answer
76 views

FSM framework required

Please recommend framework for Finite State Machine creation and simulation. I am aware of Stateflow package in Matlab, but are there any other good choices? It shouldn't be only Matlab. Frameworks on ...
0
votes
1answer
75 views

Debugging or mapping out a large state machine?

I'm trying to debug a chunk of code that's mostly a straightforward 16-state state machine, although there are some cases where the transitions are not very simple (the data the state changes operate ...
0
votes
0answers
152 views

State-Table defined finite state automata [closed]

Our professor has given this assignment below, and to be quite honest, our class is very lost. I know this is stuff we should have learned by now; however our class seems to be very lax as far as any ...
0
votes
0answers
120 views

Simple finite state automata class [closed]

I'm looking for some easy-to-use C++ class that would manage and simulate Finite State Automata. Needed features: calculate all accepted words of a given length (best thru iterator function) ...
0
votes
1answer
111 views

How to solve this ambiguity with Ragel?

I am trying to parse the following format: (identifier/)?identifier(/keyword)?, with the first identifier as well as the keyword optional. A keyword may not be used as an identifier. For example, if ...
0
votes
0answers
186 views

State Machine: Similar to Chatroulette?

I am making an app similar to Chatroulette. I am using Ruby on Rails, so I am looking to use "state machine". What I am not sure how to do is make the state depend on the state of another model or ...
2
votes
1answer
107 views

Designing state machine automatically

In these days I'm designing a pretty complex sofware, which can be designed decently only with a well-thought state machine. My problem is that, beyond a certain level of complexity, drawing the state ...
1
vote
2answers
712 views

Looking for a comparison of different scheduling algorithms for a Finite State Machine

Are there any good resources (books, websites) that give very good comparison of different scheduling algorithms for a Finite State Machine (FSM) in an embedded system without an OS? I am designing ...
0
votes
2answers
1k views

Converting regular expression to finite state machine

would you have a hint at algorithm to convert any regular expression to a finite state machine. For instance, an algorithm parsing a regexp and adding states to the fsm appropriately? Any reference or ...
0
votes
1answer
64 views

How can one simulate nondeterministic finite transducers?

A nondeterministic automaton can be simulated easily on an input string by just keeping track of the states the automaton is in, and how far in the input string it has gotten. But how can a ...

1 2 3