casaltarelli / Grepy

Version of Grepy used to test input against Regular Expressions utilizing NFA and DFA automation developed in Java. Project for CMPT 440L at Marist College Spring 2020
GNU General Public License v3.0
0 stars 0 forks source link

Define getState() Functionality [DFABuild.java] #19

Closed casaltarelli closed 4 years ago

casaltarelli commented 4 years ago

getState() will be used to find all NFA states in our current DFA State (e.g "q1q2" == ["q1", "q2"]), then returns an ArrayList of each State

casaltarelli commented 4 years ago

Completed.