Skip to content

Commit

Permalink
Merge pull request #66 from poojke/master
Browse files Browse the repository at this point in the history
AVLGroupTree: support Kryo serialisation using Scalding
  • Loading branch information
tdunning committed Jun 17, 2016
2 parents 62078d5 + 1eaad78 commit a4f30ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/tdunning/math/stats/AVLGroupTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ final class AVLGroupTree extends AbstractCollection<Centroid> implements Seriali
private int[] aggregatedCounts;
private final IntAVLTree tree;

AVLGroupTree() {
this(false);
}

AVLGroupTree(final boolean record) {
tree = new IntAVLTree() {

Expand Down

0 comments on commit a4f30ff

Please sign in to comment.