This commit is contained in:
joachimschmidt557 2019-02-06 22:43:38 +01:00
parent 20201692a1
commit c67110d17f
4 changed files with 7 additions and 2 deletions

1
NFA.fs
View file

@ -4,6 +4,7 @@ open System
type State = { name: String }
/// A non-deterministic finite automaton
type NFA = {
sigma: Char list
states: State list