-
Notifications
You must be signed in to change notification settings - Fork 3
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
Export inrangecount from NearestNeighbors.jl #17
Conversation
i's okay but also bump patch version! |
Hm, actually it isn't. This should be defined in the API file with a "search strcture" terminology. Then, the file that extends the API based on NearestNeighbors.jl should provide the concrete implementation. |
Codecov ReportBase: 86.82% // Head: 85.86% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #17 +/- ##
==========================================
- Coverage 86.82% 85.86% -0.96%
==========================================
Files 6 6
Lines 167 184 +17
==========================================
+ Hits 145 158 +13
- Misses 22 26 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Defining e.g. function Neighborhood.inrangecount(tree::KDTree, querypt, t::WithinRangeCount)
....
end |
@Datseris Ok, I think I got what you meant, and updated the PR accordingly. Changes:
|
That's pretty much what I've meant. However I removed the type because, by the definition of its name, |
Nice! I'll update the open PRs in Entropies.jl to use the new version of Neighborhood.jl (I assume this is merged and tagged within not-too-long). |
Export
inrangecount
from NearestNeighbors.jl, as discussed in JuliaDynamics/ComplexityMeasures.jl#71 (comment) and in #16.Is this approach ok? I'm not sure whether to export
inrangecount
directly, or override it with its own docstring here.