-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
Line 232 in a2a61e6
| if (n->count < left_tail_count) { |
I believe this condition
if (n->count < left_tail_count) {
continue;
}
should really be
if (count_seen + n->count < left_tail_count) {
continue;
}
otherwise the code may not consider some relevant centroids.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels