Acronym for Finite State Machine.
2
votes
2answers
36 views
FSM vs become/unbecome in Akka
Akka provides two somewhat overlapping ways to manage actor states, Finite State Machines and unbecome/become. What are their respective benefits/drawbacks? When should one of them be chosen over the ...
0
votes
0answers
13 views
periodic state machine with boost statechart
I want to implement a state machine that will periodically monitor some status data (the status of my system) and react to it.
This seems to be something quite basic for a state machine (I've had ...
-1
votes
1answer
43 views
Advantages of FSM (Finite State Machine) over SOA? [closed]
Can anyone tell me if there are any significant relative advantages of using FSM (Finite State Machine) over SOA (BPEL) for designing a workflow ? or does SOA has more advantages?
1
vote
1answer
29 views
Cnnverting FSM to regular expression
I know how to convert regular expression into FSM but not exactly sure how to reverse it.
what would the regular expression for this example be?
0
votes
1answer
21 views
neo4j logic gate simulation, how to?
I would like to create a bunch of "and" and "or" and "not" gates in a directed graph.
And then traverse from the inputs to see what they results are.
I assume there is a ready made traversal that ...
2
votes
1answer
59 views
FSM machine in VHDL with each state DOING CERTAIN OPERATIONS
I have a FSM with five states (s1, s2, s3, s4, s5).
However, for each state, a sequence of operations should be done. For example, in s2, a counter should count from 1 to 10.
Here comes my question: ...
0
votes
0answers
29 views
Any quick start guide for UML2 Finite State Machine
I believe, with this (ref: subject of title), I can create transducers as well. One option I have seen is KerMeta (but don't know much about it).
To be very specific, I am going to give Eclipse ...
1
vote
0answers
37 views
any experience with Statecharts frameworks for Java? [closed]
Does anybody have experience on things like Yakindu or Kieler?
I have started playing with Yakindu and so far I like it, but I can't find many references and feedback to it.
1
vote
1answer
59 views
Java state machine library for extending a generic state machine
I have a messaging program where we take in field values from a GUI and transform it into a generic message. The generic message will contain a certain type of state machine based on the type of ...
0
votes
1answer
74 views
VHDL FSM set unit input and use output in same state
I am implementing a Mealy-type FSM in vhdl. I currently am using double process, although i've just read a single-process might be neater. Consider that a parameter of your answer.
The short version ...
0
votes
0answers
30 views
Developing a State Machine - Handling Multiple Outcomes Per State
So I'm trying to develop a simple state machine for a game I'm making, and I'd like to start off the Character Controller with the basics. I'm just confused on how to handle transitions from one ...
-3
votes
1answer
145 views
Verilog help. Simple syntax error according to ISE. programing FSM to a basys board
Sorry if this type of question is already up.
I've been looking for a couple days now for help on this.
I'm getting an error near the parameter line. says ERROR:HDLCompiler:806 - Syntax error near ...
2
votes
1answer
72 views
realtime message matching against tons of rules
I have a scenario that messages come in to my system at a rate 300,000/second at peek, and the system will determine where each message goes (client) by matching each message against specific rules.
...
2
votes
5answers
185 views
What's the regex corresponding to this DFA?
Here is a DFA from a research project. We created the DFA manually. We are interested in What is Regular Expression that is corresponding to DFA . Certainly, there could be multiple
Regular ...
0
votes
2answers
83 views
C# storing generics state
public abstract class State<T>
{
public virtual Enter(T item)
{
// an empty method
}
}
public class ChaseState : State<FieldPlayer>
{
public override ...
3
votes
0answers
115 views
Is there a state machine framework which implements UML semantics for the D programming language?
Is there a state machine framework in the D programming language which implements UML semantics similar to boost.MSM, boost.statecharts, QP or Machine Objects ?
1
vote
1answer
39 views
What can be adjusted in this simple code to make signal change in fsm
Well i have process a in my main component and process b in my other sub component(inmplemented in the main one).
both process a and b have only the clock in their sensitivity list:
process a control ...
0
votes
0answers
89 views
Neat FSM design and transitions for Giant FSM's
What is the cleaner way of Implementing FSM.
Issues :
My model has multiple FSM's hence to reuse the states i dont want the states to store the logic of moving to next State rather would want to ...
2
votes
3answers
106 views
Vhdl with no clk
I have a clock in my vhdl code but i don't use it , simply my process just depends on handshake when one component finishes and gets an output out , this output is in the sensitivity list of my FSM ...
0
votes
0answers
54 views
Event management using FSM
I started building JavaScript Application used to drawing building floor layout. I am using kinetic.js as my canvas library. I am wondering what approach should I follow to manage complex event ...
1
vote
0answers
73 views
Large DFA examples?
I am doing some research on DFA optimization, which needs several large DFA examples with inputs.
I tried to program a DFA generator, with which the results would be artificial.
Do you, by any ...
3
votes
1answer
171 views
How does a finite state machine perform division?
I am taking a course on models of computation and currently we are doing finite state machines. One my tasks is to draw out a FSM that performs division of 3; to simplify the model the machine only ...
0
votes
3answers
195 views
VHDL: Create finite state machine from logic expressions
I've been asked to create a finite state machine using one-hot encoding that will detect a sequence of four 1's or 0's on the input w. I've already written the code using case statements, but I have ...
0
votes
3answers
209 views
verilog to FSM convert
I have a program written in Verilog and I want to convert it into a FSM automatically. Is this possible (just to visualize it)?
Here is the code :
module ...
0
votes
0answers
75 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
56 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 ...
0
votes
0answers
16 views
Using Libero FSM from iMatix. Can't change the stack_max
Even after building myFile.l with -opt:stack_max=50 option, and compiling my project, I can't use more than 18 or 19 actions for each event in any state.
Has someone experienced this issue? Any ...
0
votes
0answers
70 views
Graphviz overlapping lables
I have a python script that generates an FSM and writes a graph file, but when I display it the label on one of the transitions overlaps with another, I have tried overlap=false and much more to no ...
-2
votes
1answer
148 views
Verilog Mealy FSM with 1 module
I must write a verilog program for 1 mealy fsm. There are many techniques to write it. I'll show you 1 and i want to know if it works too(no need to mention other techniques, just say if that works or ...
1
vote
2answers
717 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 ...
2
votes
1answer
65 views
Pattern matching in brace expressions formulas
I have a long list of n (~50000) lines with formulas that look like that:
A(1, 2) = 54353
A(1, 2, 3) = 89327
A(1, B(1, 2)) = 8372
A(7, B(1, 3, 5)) = 6311
A(7, B(C(1, 3, 7), 2, C(1, 3), 5)) = 28490
...
4
votes
3answers
166 views
State management in VHDL FSMs
A lot of the FSMs I see in VHDL work by setting a variable "next_state" in the FSM logic and then assign this seperately to the state variable outside of the process.
If there anything wrong with ...
0
votes
2answers
166 views
How to build FSM when there are too many states?
I am working on a vending machine project and trying to build a state machine, as I saw from other examples. The machine that I am trying to build holds up to 100 dollars. And it takes nickel, dime ...
0
votes
2answers
161 views
VHDL FSM pattern checker
I'm trying to write some vhdl that detects a given pattern in a string of bits. The circuit should output 1 when it finds the pattern "110" in the input stream. My input is "X" and my output is "Z".
...
0
votes
1answer
174 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 ...
1
vote
2answers
113 views
Regular expression to find return of character for 5 times
I'm trying to build a finite state machine and I want to check the sequence that I get, with a regular expression.
I need to check if the sequence is from the the following form:
For example:
...
2
votes
2answers
49 views
Create class with decorator
I've implemented a Finite state machine in python. This works but implementing a state needs to write unnecessary code.
class State:
def __init__(self):
<do something>
def ...
0
votes
3answers
1k views
How to implement a FSM - Finite State Machine in Java
I have something to do for work and I need your help.
We want to implement a FSM - Finite State Machine, to identify char sequence(like: A, B, C, A, C), and tell if it accepted.
We think to implement ...
1
vote
1answer
122 views
Switching states in a FSM
I'm experimenting with using a finite state machine as a model for managing the flow of a simple game. Enter into a Main Menu state, from which you select say starting a game or modifying options, ...
2
votes
2answers
194 views
Given a sequence of symbols, how to find the minimal DFA that can accept it?
For example: Given the below symbol sequence,
a b c b c d d d b c b c d d d d e
The simplest DFA that can accept it is a chain of 17 states.
While the below regular expression can derive the above ...
2
votes
1answer
447 views
led pattern finite state machine verilog
I was wondering if someone could shed some light on how to go about coding a led pattern fsm in verilog that produces the 4 different patterns on 8 LEDs and the LEDs change every tick pulse, there are ...
0
votes
1answer
230 views
VHDL state machine is not looping
Fellow SO users,
I'm programming my ADC (ADC0804 which is mounted on a breadboard connected to a Spartan-3 FPGA board). Now, I'm using this ADC to provide digital output for my humidity sensor. The ...
1
vote
1answer
170 views
How do I integrate a finite state machine into my application?
Hi and sorry advance if this has already been covered.
I'm mainly preoccupied with writing numerical software but I'm a bit of a noob when it comes to application design.
I've written a library ...
1
vote
1answer
161 views
Best practices for designing a FSM for long running processes
I'm primarily a c# developer and looking for some guidance (theory and/or code samples) on designing a finite state machine for a series of long running processes. Each operation defined can run for ...
0
votes
3answers
96 views
Good Practice (for FSMs): BUSY or IDLE
Let's consider state machines in VHDL that sit in some idle state
until they're triggered to work for a while and end up in idle state again.
What is the better practice:
Include an IDLE signal to ...
0
votes
2answers
390 views
What are Erlang Alternatives? [closed]
What are the closest framework to Erlang for other programming languages like Java, C++ especially for
Embedded linux application
The framework support a close flavor of the FSM model of Erlang in ...
0
votes
0answers
30 views
State Machines to correlate multiple data streams
I have gone through some papers that state machines could be used for stream data processing as correlating and joining multiple data streams.
Is anyone familia with this?
Is there any ...
0
votes
1answer
318 views
Perl finite state machine for quick parsing, regex generation
I need to match very short segments of text (1 to 7 letters), and I know how to specify the acceptable strings in a finite state machine. I think that building a regex for this application would get ...
-2
votes
1answer
1k views
finite state machine verilog
I was wondering if someone could shed some light on how to go about coding a pattern fsm in verilog that produces the 4 different patterns on 8 LEDs and the LEDs change every tick pulse.
I know that i ...
1
vote
1answer
137 views
segmentation fault C finite state machine
I am relatively new to C programming and I am trying to make a delimiter checker, but for some reason every time I run my code and it gets my input to check for delimiters, it has a segmentation fault ...

