mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-07 05:28:45 -04:00
Merge branch 'main' into gh-pages
This commit is contained in:
commit
c8b1119a12
1 changed files with 2 additions and 2 deletions
|
|
@ -104,7 +104,7 @@ d(qc, c) = qc
|
|||
new Example(
|
||||
"Tutorial",
|
||||
"DPDA Final State",
|
||||
`// Accept strings over a,b of the form a^nb^k n != k n,k > 0
|
||||
`// Accept strings over a,b of the form a^nb^k where n != k and n,k > 0
|
||||
|
||||
type = DPDA
|
||||
Q = {q0, qas, qeq, qmb, qlb} // states
|
||||
|
|
@ -122,7 +122,7 @@ d(qas, b, z0) = (qeq, z0)
|
|||
d(qas, a, A) = (qas, [A A])
|
||||
d(qas, b, A) = (qlb, ~)
|
||||
|
||||
d(qlb, b, A) = (qeq, ~)
|
||||
d(qlb, b, A) = (qlb, ~)
|
||||
d(qlb, b, z0) = (qeq, z0)
|
||||
|
||||
d(qeq, b, z0) = (qmb, z0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue