7 lines
249 B
Python
7 lines
249 B
Python
def get_number_of_loops(automaton, symbol):
|
|
number_of_loops = 0
|
|
for state in range(automaton.get_number_of_states()):
|
|
if automaton.get_target_state(state, symbol) == state:
|
|
number_of_loops += 1
|
|
return number_of_loops
|