-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Current implementation of closure uses Prelude's nub function for removing duplicates. This function is O(n^2), yet it can be improved using nub for ordered lists which is O(n).
This, however, will restrict the type of states to ordered types. Should we use the more efficient version of nub?