The automaton tag has no wiki summary.
7
votes
1answer
169 views
Are there monads that can be used like an automaton?
I'm writing a stream transformer from some Input data type to an Output data type. Input is made by the user, so there is some time between the events. Because each input requires some resource ...
2
votes
1answer
87 views
Getting values from previous “row” in 2D C array
I'm working on a 1D Game of Life (based upon the rules set out here at Mathworld). Essentially, each generation is represented as a row of 0's or 1's (dead or alive) and the next generation is created ...
2
votes
1answer
323 views
Implement a Cellular Automaton ? “Rule 110”
I was wondering how to use the Rule 110, with 55 lines and 14 cells. I have to then display that in an LED matrix display.
Anyway my question is, how can I implement such automaton ??
I dont really ...
1
vote
1answer
184 views
Equivalence between two automata
Which is the best or easiest method for determining equivalence between two automata?
I.e., if given two finite automata A and B, how can I determine whether both recognize the same language?
They ...
1
vote
0answers
157 views
Peg Solitaire / Senku solution algorithm
I need to program a solver for the game of Peg solitaire / Senku
There's already a question here but the proposed answer is a brute force algorithm with backtracking, which is not the solution I'm ...
1
vote
2answers
249 views
Scalability of aho corasick
I want to search a text document for occurrences of keyphrases from a database of keyphrases (extracted from wikipedia article titles). (ie. given a document i want to find whether any of the phrases ...
1
vote
1answer
207 views
transition function of a automaton
My goal is to implement a transition function in OCaml which takes in input an state and a character is returns a positive Boolean formula(including true and false).
That is: \delta(q0,a) = q1 and ...
1
vote
2answers
256 views
Implement a finite state automaton in OOP
I am thinking about implementing a program with finite state automaton in an OOP language like Java or C++.
What would you think is the best way to implement this with a manageable amount of ...
1
vote
1answer
408 views
How should I implement this HashMap's equals and hashCode methods to represent an automaton state?
I want to put State objects (which are HashMaps with Character as key and State as Value into an ArrayList named allStates. Should I override the equals and hashCode methods here? Why? How?
This ...
0
votes
1answer
17 views
Design of a “Push Down Automata” that recognizes the language: a^n b^m | n<= m <= 3n
I'm studying for my exam automata and formal languages, I have to design a PDA that recognizes the language:
a^n b^m | n<= m <= 3n
I have a slight idea, but I'm stuck with this:
first ...
0
votes
2answers
34 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
1answer
35 views
Grammar help (Theory of Automata)?
Hi guys I have an question, Simple question with Automaton, I am not sure whether this is the right place or not of psoting this kind of question.
Actually this year I have an course Compiler ...
0
votes
2answers
499 views
DFA Minimization Brzozowski algorithm
I am trying to implement Brzozowski's algorithm for minimizing my DFA
Following is the algorithm for the same.
DFA = d(r(d(r(NFA))))
where r() is reversal of NFA and D() converts NFA to DFA.
But ...
0
votes
1answer
30 views
automate pattern matching for strings
How can I create an automaton for searching pattern P="abaabba" with alphabet {a,b} ?
0
votes
1answer
76 views
I have to parse a complicated string format. Is implementing an automaton a sensible approach?
I am currently struggling with a particularly obnoxious string format that I have to parse. The strings can contain substrings that denote a variable property that has to be resolved. Imagine ...
0
votes
2answers
135 views
Moving from state to state in this automaton via HashMap
I'm using this method to move from a state to the next on this automaton simulator:
public void processString (String string){
StringBuilder stepString= new StringBuilder (string);
int ...
-1
votes
1answer
103 views
Can below problem be solved using a dfa?
Find an nfa that accepts {a}* and is such that if in its transition graph a single edge is removed without any other changes, the resulting automaton accepts {a}.
-3
votes
0answers
56 views
classify the three languages below as 1. not context-free 2. context-free but not regular or 3. regular [closed]
We want to classify the three languages below as 1. not context-free 2. context-free but not regular or 3. regular. We also want to provide proof that the classification is correct:
a) L1 = {a^i b^j ...