diff options
author | Nathan Lasseter <nathan@4574.co.uk> | 2014-03-29 18:27:13 +0000 |
---|---|---|
committer | Nathan Lasseter <nathan@4574.co.uk> | 2014-03-29 18:27:13 +0000 |
commit | 1e799f72df429beceb42aa8d1ce640e5e2c5210e (patch) | |
tree | e137fa46147725e55bb23537b9f0ff24bf1d3984 /examples/abc.dfa | |
parent | d9fbb2c4900b008daa9c5e0302677f9d1674a473 (diff) |
Updated file endings for examples
Diffstat (limited to 'examples/abc.dfa')
-rw-r--r-- | examples/abc.dfa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/abc.dfa b/examples/abc.dfa new file mode 100644 index 0000000..691d5f6 --- /dev/null +++ b/examples/abc.dfa @@ -0,0 +1,19 @@ +Comment: This machine accepts any number of "a b c" +Comment: Eg. "a b c a b c" +Comment: VFSM example +Comment: Nathan Lasseter (User_4574) 2013 + +Nodes: Start firsta firstb S0 S1 HA + +Start: Start + +Accept: HA + +Edges: + Start a firsta + firsta b firstb + firstb c HA + HA a S0 + S0 b S1 + S1 c HA +End: |