Skip to content
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

MergingDigest.centroids is wrong on an empty digest #49

Closed
jpountz opened this issue Apr 7, 2015 · 3 comments
Closed

MergingDigest.centroids is wrong on an empty digest #49

jpountz opened this issue Apr 7, 2015 · 3 comments

Comments

@jpountz
Copy link
Contributor

jpountz commented Apr 7, 2015

When calling centroids on an empty MergingDigest, a list containing a single element with NaN as a centroid is returned instead of an empty list:

MergingDigest d = new MergingDigest(100);
System.out.println(d.centroids()); // [Centroid{centroid=NaN, count=0}]
@tdunning
Copy link
Owner

tdunning commented Apr 7, 2015

Oops. Thanks.

MergingDigest isn't don't yet so I don't want to spin up a new release for this, but it clearly needs fixing.

@jpountz
Copy link
Contributor Author

jpountz commented Apr 7, 2015

No worries I'm just plyaing for now. For the record, it's easy to work around by extending MergingDigest.centroids and returning an empty list when size() returns 0.

By the way some initial testing seems to suggest MergingDigest is slower than AVLTreeDigest (at least on a uniform distribution) while I was expecting this impl to be faster?

@tdunning
Copy link
Owner

tdunning commented Apr 7, 2015

I haven't touched speed questions yet. There are knobs to turn still. I would think it could be faster, but hard to say. The serious goal is to provide a basis for translation to C. That means we can't have any dynamic allocation that assumes GC.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants