Skip to content

Commit

Permalink
Prueba
Browse files Browse the repository at this point in the history
  • Loading branch information
cap-diego committed Dec 20, 2020
1 parent 8af84c1 commit 136b9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dfa_min_hopcroft.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dfa

// HopcroftDFAMin Given A DFA returns a new DFA with minimum states
func HopcroftDFAMin(A DFA) DFA {
completarTransiciones(&A)
// completarTransiciones(&A)
var pi []Partition
pi = append(pi, A.FinalStates)
pi = append(pi, A.States)
Expand Down

0 comments on commit 136b9ff

Please sign in to comment.