Skip to content

Commit

Permalink
Added introductory comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yuuungch committed Aug 7, 2023
1 parent fbf7392 commit 70d59cf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions DPDA.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Deterministic Pushdown Automata (DPDA) - Python Implementation
#
# Authors:
# - GUERRA, Angelo (12182346)
# - WONG, Krizchelle (12118524)
# - YUNG CHENG, Adrian (12119873)
#
# Course: STALGCM
# Section: S11
# Last Updated: August 7, 2023

class DPDA:
def __init__(self, states, input_alphabet, stack_alphabet, transitions, start_state, start_stack_symbol, accept_states):
self.states = states
Expand Down
11 changes: 11 additions & 0 deletions DPDA_GUI.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Deterministic Pushdown Automata (DPDA) - Python Implementation
#
# Authors:
# - GUERRA, Angelo (12182346)
# - WONG, Krizchelle (12118524)
# - YUNG CHENG, Adrian (12119873)
#
# Course: STALGCM
# Section: S11
# Last Updated: August 7, 2023

import tkinter as tk
from tkinter import filedialog
from DPDA import DPDA
Expand Down

0 comments on commit 70d59cf

Please sign in to comment.