Tagged Questions

19
votes
13answers
772 views

C state-machine design

I am crafting a small project in mixed C and C++. I building one small-ish state-machine at the heart of one of my worker threads. I was wondering if you gurus on SO would share …
3
votes
5answers
195 views

What’s the best(when performance matters) way to implement a state machine in C#?

I came up with the following options: Using the goto statement: Start: goto Data Data: goto Finish Finish: ; using the switch statement: switch(m_state) { case St …
0
votes
2answers
62 views

Create a diagram HTML5 HTML parsing algorithm

HTML5 describes an algorithm for parsing HTML. It is based on state machines. What is the best way to create a diagram for this algorithm?
0
votes
1answer
30 views

How can I access a collection of acts_as_state_machine states for a particular rails model?

Is it possible to access the collection of states for the given model: class Conversation include AASM aasm_initial_state :unread aasm_state :unread aasm_state :read aasm_st …
0
votes
2answers
230 views

How to write state machines with c#?

I need to write state machines that run fast in c#. I like the Windows Workflow Foundation library, but it's too slow and over crowded with features (i.e. heavy). I need something …
0
votes
4answers
258 views

How do I build a LR state machine parser?

I'm wanting to play around with creating an LR parser generators. Does anyone know of a good (free) resource describing how to create a state machine table from a grammar?
1
vote
2answers
110 views

Is it possible to transition between states until multiple events happen in wf?

I am developing a State Machine Workflow using C# and WF in visual studio 2008. On one of my states I need to wait for multiple events to happen until the workflow can transition …
4
votes
5answers
306 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. …
3
votes
3answers
145 views

Parsing wiki markup using a state machine

I would like to parse a simple grammar such as wiki markup using state machines. I have never written or played with one. I would like to lean how to implement a simple one. I am t …
0
votes
2answers
184 views

State Machine Implementation

I'm looking for some general Optimization Correctness Extensibility advice on my current C++ Hierarchical State Machine implementation. Sample variable isMicOn = false varia …
2
votes
6answers
218 views

How to design a state machine in face of non-blocking I/O?

I'm using Qt framework which has by default non-blocking I/O to develop an application navigating through several web pages (online stores) and carrying out different actions on th …
1
vote
2answers
129 views

library for converting regular expressions to NFAs?

Is there a good library for converting Regular Expressions into NFAs? I see lots of academic papers on the subject, which are helpful, but not much in the way of working code. My …
4
votes
5answers
760 views

Java library to check whether a String contains a number *without* exceptions

I'm looking for a method that returns a boolean if the String it is passed is a valid number (e.g. "123.55e-9", "-333,556"). I don't want to just do: public boolean isANumber(Stri …
0
votes
1answer
621 views

SharePoint modification forms in state machine workflows

Hello, I've been perplexed lately working on a SharePoint state machine workflow. I was hoping to add some modification forms to the workflow so that I could reassign a task whil …
1
vote
1answer
242 views

Controlling Layout of Graphviz Graphs

I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of decidin …

1 2 next
15 30 50 per page