Tagged Questions

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

31
votes
20answers
3k views

Code Golf: Finite-state machine!

Finite state machine A deterministic finite state machine is a simple computation model, widely used as an introduction to automata theory in basic CS courses. It is a simple model, equivalent to ...
15
votes
7answers
599 views

how useful is Turing completeness? are neural nets turing complete?

While reading some papers about the Turing completeness of recurrent neural nets (for example: Turing computability with neural nets, Hava T. Siegelmann and Eduardo D. Sontag, 1991), I got the feeling ...
11
votes
3answers
4k views

How to Make a Basic Finite State Machine in Objective-C

I am attempting to build an FSM to control a timer in (iphone sdk) objective c. I felt it was a necessary step, because I was otherwise ending up with nasty spaghetti code containing pages of if-then ...
7
votes
4answers
649 views

Is there a difference between a “finite state machine” and a “state machine”?

I'm not sure I understand if there is a difference between a finite state machine and a state machine? Am I thinking about this too hard?
6
votes
1answer
149 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
1answer
249 views

Finite State Machine with Guards in PHP?

Does anybody know a finite state machine that has guard feature in PHP ?
6
votes
3answers
304 views

What is an appropriate data structure or algorithm for producing an immutable concrete syntax tree in a functionally pure manner?

Given a LL(1) grammar what is an appropriate data structure or algorithm for producing an immutable concrete syntax tree in a functionally pure manner? Please feel free to write example code in ...
6
votes
3answers
924 views

How to visualize an Erlang gen_fsm

Do you know of any existing tool to graphically render the diagram of an Erlang gen_fsm starting from the source code?
4
votes
3answers
135 views

Expanding [optionals], groupings, and the | or operator in text

I am trying to expand sentences that incorporate [ ] to indicate optionals, ( ) to indicate grouping, and | to indicate the or operator and enumerate all possibilities. So for example: "Hey [there] ...
4
votes
6answers
206 views

Creating a Basic Formula Editor in JavaScript

I'm working on creating a basic RPG game engine prototype using JavaScript and canvas. I'm still working out some design specs on paper, and I've hit a bit of a problem I'm not quite sure how to ...
4
votes
2answers
664 views

How to perform FST (Finite State Transducer) composition

Consider the following FSTs : T1 0 1 a : b 0 2 b : b 2 3 b : b 0 0 a : a 1 3 b : a T2 0 1 b : a 1 2 b : a 1 1 a : d 1 2 a : c How do I perform the composition operation on these two FSTs (i.e. ...
4
votes
5answers
851 views

Design Pattern problem involving N states and transitions between them

I have a problem at hand and I am not getting which design pattern to use. The problem goes as such: I have to build a system which has 'N' states and my system has to do a transition from any state ...
3
votes
2answers
51 views

DFA string validation

i have a program that simply takes all the states as a set of states as a input. and then the next input that is taken is the initial state among the set of states and then set of final states. The ...
3
votes
4answers
163 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
0answers
107 views

State machines with temporal events [closed]

I have defined a finite state machine Q = {Σ, S, s0, δ, F} where Σ = {'[r]equest', '[o]ut', '[i]n', '[e]nd'} S = {'[R]eady', '[I]nitiating', '[W]aiting', 'Re[C]eived', 'Re[S]etting'} s0 = R, F ...
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
3answers
322 views

Simple State Machine Problem

I have a very simple FSM which should drive some output signals of an external RAM. The problem that I have comes with handling the data bus which can be input as well as output... I am not too sure ...
3
votes
4answers
415 views

Speed of finite state machines - OO vs procedural

Hey all, I am designing a program that will accept from input a series of tokens and feed them to a finite state machine which I have designed. I have designed a test finite state machine in ...
3
votes
2answers
580 views

Implementing Hierarchical State Machines in C

I'm a bit confused about how to implement my state machine. I already know it's hierarchical since some states share the same action. I determine what I need to do by these parameters: Class ...
3
votes
5answers
468 views

Have you ever had to create a Finite-State machine?

This does not include a finite-state machine you might have done for college. I want to know who has had to create one and why? What was the most difficult aspect of creating the machine?
2
votes
1answer
150 views

FSM to actual java code. Not sure if code is correct

This is for school, but not homework. I'm trying to understand how RDT is implemented and i was able to find another school that had a simulator already created, but just have to fill in the sender ...
2
votes
3answers
275 views

Finite State Machine With Function Pointers

I am learning to use finite-state machines for some tasks but I am having problems navigating my state table and executing the functions to make it a useful system. Consider my state machine: ...
2
votes
4answers
226 views

What is the algorithm for generating a random Deterministic Finite Automata?

The DFA must have the following four properties: The DFA has N nodes Each node has 2 outgoing transitions. Each node is reachable from every other node. The DFA is chosen with perfectly uniform ...
2
votes
2answers
412 views

Is there a simple .NET code generator for a Event-driven finite state machine?

Is there a simple .NET code generator for a Event-driven finite state machine? I am tired of doing this by hand for user-interface objects. I just need the enum definition, the switch statement, and ...
2
votes
1answer
365 views

What is the best way to implement a FSA/FSM in Java

I have a big finite state automaton with like 50 states and each state has avg. 3-4 transitions to other states. So I don't think the "state pattern" is suitable for this. This FSM tends to be a ...
2
votes
1answer
131 views

How do I communicate with the user in a finite state machine implementation?

Basically I have a custom implemented finite state machine that mostly listens for hardware switch state changes for initiating transitions, but some things need communication with the user... For ...
1
vote
1answer
24 views

What type of languages are accepted by a PDA in which stack size is limited?

What type of languages are accepted by a PDA in which stack size is limited, let's say 20 items? In my view it should still be CFL. Because there is a temporary memory to store.
1
vote
1answer
40 views

State/transition diagram of lexical analysis - What significance is * (asterisk) to retract the forward pointer?

I'm reading Compilers: Principles, Techniques, and Tools and don't understand this: In addition, if it is necessary to retract the forward pointer one position (i.e., the lexeme does not ...
1
vote
1answer
33 views

is it okay to have several transition for a state in state machines?

I'm trying to draw a state machine for my developed software so as usual in software developing I have several different guards for different transitions which all of them coz to the same state. Now ...
1
vote
1answer
62 views

check if two regexes match the same strings in java

I have two regular expressions (simple example: "[0-9]+" and "[0123456789]+"). I'd like to see if they match exactly the same inputs. Is there a built-in function for doing this check in java? If not, ...
1
vote
4answers
110 views

Implementing a Finite State machine in C

I have been writing a code that either accepts or rejects a string of input symbols as part of a specified language. And I have written code for the first language but it doesn't accept the right ...
1
vote
1answer
26 views

Rails model design: propose and counter-propose a time

I have a model that allows user A to propose a time for an appointment to user B. If B accepts, then event is set. But if B proposes another time, then A must accept or propose another time, and so ...
1
vote
2answers
95 views

Queuing ObservableCollection Updates

I am programming a TAPI application which uses the state pattern for dealing with the different states a TK can be in. Incoming and outgoing calls are recorded via an ObservableCollection in a ...
1
vote
0answers
44 views

State machine radio buttons

How can I implement radio buttons in boost meta state machine? The problem is the amount of transitions grows quadratically, e.g. with 3 buttons the options are: 1 -> 2 1 -> 3 2 -> 1 2 -> ...
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
82 views

Implementing custom protocol logic in Java?

When implementing a client/server solutions, one of the questions you always need to answer is about protocol. In simple cases, it's possible that packets are always of the same type, so the protocol ...
1
vote
1answer
117 views

How to read a FSM diagram

How do i take this diagram and translate it into a useable program. I'm not really sure how to read this diagram. If someone could just kind of walk me through, maybe show an example of code and how ...
1
vote
2answers
144 views

PHP parsing technique

Can any one give me some idea about how does a php file get parsed? I'm actually looking for the finite state machine structure for the parser. If anyone has any idea please share.
1
vote
1answer
93 views

Finite State Machines

http://i.stack.imgur.com/hpxyD.png I am learning about finite state machines using MIPS. I was given this diagram linked above and told that it currently supports add, sub, slt, and, or lw, sw, beq, ...
1
vote
3answers
386 views

Advantages/Disadvantages of NFA over DFA and vice versa

What are the relative pro's and con's of both DFA's and NFA's when compared to each other? I know that DFA's are easier to implement than NFA's and that NFA's are slower to arrive at the accept state ...
1
vote
0answers
70 views

Learn about the underlying principles of protocol compilers?

Can anyone recomend a really good book about protocol compilers, ie. how to generate protocol code? I don't want any superficial book that sort of works like a cook book with a few recipies in it, ...
1
vote
1answer
635 views

Java library for converting NFA to DFA

I am looking for a Java library which can convert Non-deterministic Finite Automaton to Deterministic Finite Automaton. Is there any?
1
vote
2answers
568 views

Mealy v/s. Moore

What is the difference between Mealy & Moore type of finite state machines?
1
vote
2answers
130 views

Creating an Exclusive Or from two Deterministic Finite Automatons (Deterministic Finite-State Machines)

Two DFAs (Deterministic Finite Automaton or Deterministic Fininte-State Machines - Which will be called DFAs from here on) Defined over the set DFA 1: L1 = {Q1, E, D1, s1, F} DFA 2: L2 = {Q2, E, D2, ...
1
vote
1answer
197 views

abusing ragel, possibly need new approach / tool

I'm trying to use Ragel to implement a simple yes/no fsm. Unfortunately the language specification consists of the union of about a thousand regular expressions, with * operators appearing once or ...
1
vote
1answer
2k views

Rails: Multi-Step New User Signup Form (FSM?)

I've read the "Create Multi-Step Wizard" in Advanced Rails Recipes. I've also read and re-read the documentation for the updated FSM I'm using called Workflow, and looked here and here. The Advanced ...
1
vote
1answer
36 views

Approaches for using and analyzing set data in time

I am designing an interactive installation for a gallery where I will receive input telling me which of 8 input transducers have been bridged. For example if someone touches strip number 1, I will be ...
0
votes
1answer
30 views

Finite state automata as (programming) language acceptors

I know how a FSA accepts the string 'nice' (as shown in the Wikipedia page) but how can the language that a FSA accepts be a programming language? Is it like this?; lets say that I have an alphabet ...
0
votes
1answer
25 views

finite-state machine excessive state

I have i finite-state machine. My regular expression is: \+[0-9]+\+%\+[0-9]+ The problem is that q3 is is in excessive state (the same as q1) I am wondering how to bypass that. Should I simply rename ...
0
votes
1answer
39 views

catching discarded events in boost statechart library

I am looking at Boost StateChart lib documentation, and I am not able to find out a way to catch abnormal events. For example, if I am in state A, which handles only EventA, and I call ...

1 2