-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple failing test #6
Comments
I'll check this out tomorrow. I use an in-tree fork internally, which has a bugfix for this I reckon. |
@Alex-Fischman could you review and test 6-simple-failing-test and see if it resolves your issue? |
There seems to be a similar problem with supersets:
Similar to the original test for subsets, the correct answer here is the empty iterator because |
And here's another small test for subsets that still fails on branch
Since the empty set is a subset of |
I've identified the issue, booked out this weekend to resolve it. |
The following test fails:
The test is correct because we construct a set-trie that only contains the set
{1, 2}
. We then query for all subsets of{0, 2}
. However, since{1, 2}
is not a subset of{0, 2}
, we should get the empty iterator.The text was updated successfully, but these errors were encountered: