6 lines
281 B
Markdown
6 lines
281 B
Markdown
# Deterministic Pushdown Automata
|
|
|
|
This is an general implementation of deterministic pushdown automata in Python.
|
|
The DPDA base class is designed such that it is easy to derive any DPDA by defining the rule set.
|
|
|
|
I created this for the class "Theory of Computation" in Fall 2024.
|