You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Attribute_DFA's minimize DFA method the implementation for DFA minimization uses a linear search when it could use a hashmap to identify indistinguishable states which would bring us to O(n^2) from O(n^3) runtime for DFA minimization.
In Attribute_DFA's minimize DFA method the implementation for DFA minimization uses a linear search when it could use a hashmap to identify indistinguishable states which would bring us to O(n^2) from O(n^3) runtime for DFA minimization.