Tagged Questions

7
votes
2answers
842 views

Designing high-performance State Machine in Java

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, as ...
3
votes
2answers
422 views

FST (Finite-state transducers) Libraries, C++ or java

I have a problem to solve using FSTs. Basically, I'll make a morphological parser, and in this moment i have to work with large transducers. The performance is The Big issue here. Recently, i worked ...
2
votes
3answers
257 views

Best way to generate java with python?

Whats the best way to generate java from python? I want to write a decorator that generates java code to call a json version of a function (I can use existing decorators to export the json api). ...
2
votes
2answers
1k views

Finite State Machine (FSM) and Android's Java

i'm willing to develop a soccer game for Android. Because the complexity of the AI, i really think i need to design it using a FSM (Finite State Machine) and not with a monster switch. Googling ...
2
votes
6answers
4k views

State Machine Framework for JBoss/Java?

We are developing an application that involves a lot of different tests where each test lead the users to a number of steps. We are thinking of using a state machine framework to capture the ...
0
votes
2answers
28 views

Is the dk.brics.automaton package thread safe?

Apache Lucene uses a modified form of the Brics automaton package. But is Brics thread safe? More specifically, can it safely handle multiple, concurrent automaton instances from different threads - ...
0
votes
4answers
83 views

Parsing file using finite state machine

I am implementing my own fsm to parse a file. I am new to fsm pattern so trying to learn about it. My fsm class takes a stream of the file that is being parsed along with the current state and a ...
0
votes
3answers
228 views

Finite State Machine design problem on Java

I want to implement FSM like below First Level Most basic State is BASE_STATE. All states derive from BASE_STATE. Second Level, WAITING_STATE, RUNNING_STATE, END_STATE, ... so on (Derived from ...