-
Notifications
You must be signed in to change notification settings - Fork 32
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
Min/Max values incorrect #28
Comments
Thanks for reporting this issue. Can you give us a minimum executable example, so we can reproduce and fix the issue? |
i was just trying to push the tests and the fix in a separate branch, but obviously I'm not contributor enough :D `
} [Test]
} Suggested fix: public TKey Min { get; private set; } = default(TKey); IntervalTreeNode cosntructor: |
Thanks for the example. I see your point. Yes, you do not have push-permissions to this repository. The correct flow, how you can contribute directly by opening a Pull-Request can be found here: https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request. If you create a PR, I can review and merge it. |
overread the part with the fork. thanks. :) |
any updates on this matter? 👼 |
Fixed in 3.0.1 |
If I add an interval to the tree that spans around the center value of the tree providing a new over all minimum and or maximum key value, the provided min/max values of the tree are wrong.
The root node will only look in the outer subtrees, if these exist and ignore the center items.
The text was updated successfully, but these errors were encountered: