Skip to content

Commit

Permalink
Final int->long mismatch which now allows import of node count > 2.4B
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Jan 12, 2016
1 parent 5919c6c commit 0da5d90
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -362,7 +362,7 @@ private int detectAndMarkCollisions( ProgressListener progress )
long max = highestSetIndex; // excluding the last one because we compare i w/ i+1
long numberOfCollisions = 0;
SameGroupDetector sameGroupDetector = new SameGroupDetector();
for ( int i = 0; i < max; )
for ( long i = 0; i < max; )
{
int batch = (int) min( max-i, 10_000 );
for ( int j = 0; j < batch; j++, i++ )
Expand Down

0 comments on commit 0da5d90

Please sign in to comment.