fsm Questions

10

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?
Goggin asked 14/9, 2009 at 16:1

1

So I've recently started learning VHDL as part of a practicum at the university. This time, our task was to create a moore-machine on which you can set the time in a certain way and use it as a co...
Sessoms asked 10/6, 2014 at 14:42

1

I'm wondering if Laravel has some built-in state machine mechanism? And if not, what's the best way to use this excellent library called Finite (https://github.com/yohang/Finite). Here's what I h...
Dippold asked 7/4, 2014 at 11:4

1

What is the general way to implement a finite state machine (or finite state transducer) in Scala? I often find myself in need for state machine implementation. My typical implementation looks lik...
Siskin asked 14/8, 2013 at 8:36

6

Solved

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 langua...
Gisarme asked 18/1, 2009 at 2:56

1

Solved

I have a tricky and interesting question to You. While working on I/O tasks such as protocol implementation via some transport layer in Twisted, Tornado, I found a similar scenario or pattern. The...
Darlenedarline asked 26/9, 2013 at 10:4

4

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...
Ultramontanism asked 11/2, 2011 at 18:48

1

Solved

I am currently researching Hierarchical State Machines (UML State Machines, Statecharts, etc.), and the following is unclear to me: Is pushing events to machine's own event queue during transition...
Decagon asked 22/6, 2013 at 17:5

2

Solved

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 t...
Brought asked 14/6, 2013 at 13:49

4

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. Unf...
Metternich asked 15/8, 2010 at 11:39

13

Solved

I guess my question is best explained with an (simplified) example. Regex 1: ^\d+_[a-z]+$ Regex 2: ^\d*$ Regex 1 will never match a string where regex 2 matches. So let's say that regex 1 is orth...
Calibre asked 28/1, 2009 at 20:2

3

Solved

I've recently become enamored with the simplicity of Erlang's actor-based concurrency model, and am playing around with ideas for implementing some parts of it in C++. Along these lines, I also lik...
Ameba asked 6/9, 2012 at 16:28

3

Solved

I'm in the midst of trying to teach myself programming. I started the same way that I'm sure most people start; making small, messy apps and games that do simple things in not-so-simple ways. Recen...
Plutocracy asked 9/8, 2012 at 11:13

1

Solved

Would you have a hint at algorithm to convert any regular expression to a Finite State Machine (FSM). For instance, an algorithm parsing a regexp and adding states to the FSM appropriately? Any ref...
Lomeli asked 11/7, 2012 at 6:5

2

Solved

Something that can convert r"a+|(?:ab+c)" to { (1, 'a') : [2, 3], (2, 'a') : [2], (3, 'b') : [4, 3], (4, 'c') : [5] } or something similar and accepting in 2 or 5
Deflect asked 24/6, 2012 at 8:15

2

I have a question about what seems to me odd behavior of an AGC/SPI controller I'm working on. It's done in Verilog, targeting a Xilinx Spartan 3e FPGA. The controller is a FSM that relies on exter...
Instantaneous asked 5/4, 2012 at 17:52

4

Solved

I have written some state machine in C++ and Java but never in a functional language like Ocaml Problem is I don't know if I can just adapt code from the object languages versions, since in Ocaml ...
Attenuation asked 24/2, 2012 at 16:9

1

Solved

I'm doing some recursive parsing. Currently I have a fake stack, where I store states for my finite state machine, so as I drill down recursively I push the state I was in, and pop it later after ...
Manifesto asked 17/2, 2012 at 10:21

1

Solved

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 ...
Frore asked 29/11, 2011 at 11:15

2

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:
Kilogram asked 17/11, 2011 at 18:56

3

Solved

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 ...
Nahshun asked 24/10, 2011 at 10:10

2

Solved

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, ...
Platter asked 12/3, 2011 at 10:41

6

Solved

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 ...
Ligula asked 17/9, 2009 at 20:10

1

Solved

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 tryi...
Marlee asked 26/7, 2010 at 1:24

3

Solved

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...
Struthious asked 21/6, 2010 at 13:31

© 2022 - 2024 — McMap. All rights reserved.