From 5070c0bc95a937584c0e758e1b07d474e221dd9b Mon Sep 17 00:00:00 2001 From: ascendforever Date: Wed, 7 May 2025 11:23:48 -0400 Subject: [PATCH] Add readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fdc3e37 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# 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.