Loading dfa.py +1 −2 Original line number Diff line number Diff line Loading @@ -288,7 +288,6 @@ class DFA: for state, character in transition: if transition[state, character] == rename: del transition[state, character] transition[state, character] = new_state self.transition = transition Loading Loading @@ -415,4 +414,4 @@ class DFA: def is_canonical(self) -> bool: canonic = self.canonize() return DFA.is_part_identical(self, canonic) No newline at end of file return DFA.is_part_identical(self, canonic) Loading
dfa.py +1 −2 Original line number Diff line number Diff line Loading @@ -288,7 +288,6 @@ class DFA: for state, character in transition: if transition[state, character] == rename: del transition[state, character] transition[state, character] = new_state self.transition = transition Loading Loading @@ -415,4 +414,4 @@ class DFA: def is_canonical(self) -> bool: canonic = self.canonize() return DFA.is_part_identical(self, canonic) No newline at end of file return DFA.is_part_identical(self, canonic)