hit counter

Timeline

My development logbook

Dfa Class

Dfa class interface:

1
2
3
4
5
6
7
8
class DFA:
    def __init__(...):
    def predict(self, input):
    def noViableAlt(self, s, input):
    def error(self, nvae):
    def specialStateTransition(self, s, input):
    def getDescription(self):
    def unpack(cls, string):