|
| 1 | +#Nondeterministic finite state automata |
1 | 2 | [](https://travis-ci.org/digitalheir/java-nfa) |
2 | 3 | [](https://github.com/digitalheir/java-nfa/releases) |
3 | 4 | [](https://github.com/digitalheir/java-nfa/blob/master/LICENSE.txt) |
4 | 5 |
|
5 | | -#Nondeterministic finite state automata |
6 | 6 | This is a library that provides an implemention of[nondeterminstic finite state automata](https://en.wikipedia.org/wiki/Nondeterministic_finite_automaton) (NFAs) in Java. You can think of NFAs as flowcharts: you are in a state, take some action, and arrive in a new state. The action can produce a side effect, such as writing a string to a tape. |
7 | 7 |
|
8 | 8 | ##Usage |
|