@bruju/automata-composer
Version:
Basic finite state automata building by composition
64 lines (42 loc) • 1.56 kB
Markdown
This package lets users build finite state automata by composing
automatas with the operators `chain` (concatenation), `or` (|),
`maybe` (?), `star` (*), `plus` (+) and `inverse` (reverse all transitions).
Transitions are strings of any length and minimization is automatically applied
when the automata is built.
```js
import { unit } from "@bruju/automata-composer";
const automata = unit("hamster").build();
console.log(automata.test(["hamster"])); // true
console.log(automata.test(["ham", "ster"])); // false
```
```js
import { chain, unit } from "@bruju/automata-composer";
const helloWorld = chain(unit("Hello"), unit("world")).build();
console.log(helloWorld.test(["Hello", "world"])); // true
```
```js
import { chain, unit, or, plus, maybe } from "@bruju/automata-composer";
const theAnimals = chain(
or(unit("Save"), unit("Kill")),
unit("the"),
unit("animals"),
plus(unit("!")),
maybe(unit("(This is a GDQ reference)"))
).build();
// Both true
console.log(theAnimals.test(["Save", "the", "animals", "!", "!", "!"]));
console.log(theAnimals.test([
"Kill", "the", "animals", "!", "(This is a GDQ reference)"
]));
```
Theory is partly inspired by :
- https://en.wikipedia.org/wiki/DFA_minimization
- https://www.dcs.ed.ac.uk/home/mic/FiniteStateMachines2-slides.pdf
Licensed under the MIT Licence by Julian Bruyat