Skip to content

Commit

Permalink
Actually use the specified ExecutorService in ConnectedComponents ...
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Jul 2, 2019
1 parent 51b56a8 commit 3aad06c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static < T extends IntegerType< T >, L, I extends IntegerType< I > > void
for ( final I i : Views.iterable( output ) )
i.setZero();

final int numLabels = labelAllConnectedComponents( input, output, se ) + 1;
final int numLabels = labelAllConnectedComponents( input, output, se, service ) + 1;

final ArrayList< Set< L > > labelSets = new ArrayList< Set< L > >();
labelSets.add( new HashSet< L >() );
Expand Down

0 comments on commit 3aad06c

Please sign in to comment.