popraw determenistic automation

This commit is contained in:
B. Piatek 2020-01-25 09:22:39 +01:00
parent 911b8e3147
commit e8d2b56ad2

View File

@ -114,6 +114,6 @@ if __name__ == '__main__':
AUTOMATON.mark_as_initial(INITIAL_STATE)
AUTOMATON.mark_as_final(FINAL_STATE)
print AUTOMATON.accepts("x") # wypisze True
print AUTOMATON.accepts("") # wypisze False
print AUTOMATON.accepts("ab") # wypisze False
print(AUTOMATON.accepts("x")) # wypisze True
print(AUTOMATON.accepts("")) # wypisze False
print(AUTOMATON.accepts("ab")) # wypisze False