Github Link
https://github.com/rusuraluca/lftc/tree/main/lftc_lab5
Docs
class FiniteAutomata
: will read the file when it is initialized, will parse the input file and then populate all the fields in the class
states
- [] -> is an array which contains all the possible states
alphabet
- [] -> is an array which contains all the possible letters
transitions
- {} -> this would represent a map, where the key represents a pair between (state, alphabet_value) and the value represents the projection of the
initial_state
- "" -> a simple string would be enough because we can have only one initial_state
final_states
- [] -> the array of final states
__init__
- we initialize the FiniteAutomata with the filename
- we initialize all the fields
- we call the read_from_file method
read_from_file
- we read from the file and populate all the fields
print_fa
- we print the FiniteAutomata