Skip to content

Commit 60fda08

Browse files
committed
Cambio de nombres api
1 parent 86ae42a commit 60fda08

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dfa_min_data.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ type splitter struct {
1313

1414
// DFA represents a finite automata
1515
type DFA struct {
16-
States Partition `json:"States"`
17-
Alphabet []int `json:"Alphabet"`
18-
InitialState State `json:"InitialState"`
19-
FinalStates Partition `json:"FinalStates"`
20-
Delta map[State]map[int]State `json:"Delta"` // Given state and symbol returns the state
16+
States Partition `json:"states"`
17+
Alphabet []int `json:"alphabet"`
18+
InitialState State `json:"initialState"`
19+
FinalStates Partition `json:"finalStates"`
20+
Delta map[State]map[int]State `json:"delta"` // Given state and symbol returns the state
2121
}
2222

2323
// Size returns the number of states of the automata

0 commit comments

Comments
 (0)