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
SortedBag's subset comparison does not count multiplicities, so it returns incorrect results for a multiset. E.g., SortedBag([1, 1]).isSubset(of: [1]) should be false, but it currently returns true.
SortedBag
's subset comparison does not count multiplicities, so it returns incorrect results for a multiset. E.g.,SortedBag([1, 1]).isSubset(of: [1])
should befalse
, but it currently returnstrue
.This breaks the new tests added in a7f642e.
The text was updated successfully, but these errors were encountered: