Skip to content

Commit

Permalink
one more bug
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed May 7, 2024
1 parent 3e64eec commit a3cc7c0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1528,14 +1528,15 @@ public void callWithSparkContext(final JavaSparkContext sc,
final int start;

if ( multiSem )
start = lastScaleIndex + 1;
start = lastScaleIndex;
else
start = firstScaleIndex - 1;

for (int s = start; s >= lastScaleIndex; --s) {

System.out.println( "Processing scale: " + s );

//System.exit( 0 );
final long[] blockPadding = new long[] {32, 32};

final double maxDeltaZ = (s == lastScaleIndex ) ? this.finalMaxDeltaZ : this.maxDeltaZ;
Expand Down

0 comments on commit a3cc7c0

Please sign in to comment.