Skip to content

Commit 3c55744

Browse files
committed
code formatting
1 parent 684bc03 commit 3c55744

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/de/tilman_neumann/jml/factor/siqs/sieve/Sieve03gU.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,14 @@ public SieveResult sieve() {
244244
t |= UNSAFE.getLong(x+=8);
245245
t |= UNSAFE.getLong(x+=8);
246246
t |= UNSAFE.getLong(x+=8);
247-
if((t & LONG_MASK) == 0) continue;
247+
if ((t & LONG_MASK) == 0) continue;
248248

249249
// back up to get the last 8 and look in more detail
250250
x -= 256;
251251

252-
for(int l=0; l<32; l++) {
252+
for (int l=0; l<32; l++) {
253253
final long y = UNSAFE.getLong(x+=8);
254-
if((y & LONG_MASK) != 0) {
254+
if ((y & LONG_MASK) != 0) {
255255
testLongPositive(y, (int) (x-sieveArrayAddress));
256256
}
257257
}
@@ -355,14 +355,14 @@ public SieveResult sieve() {
355355
t |= UNSAFE.getLong(x+=8);
356356
t |= UNSAFE.getLong(x+=8);
357357
t |= UNSAFE.getLong(x+=8);
358-
if((t & LONG_MASK) == 0) continue;
358+
if ((t & LONG_MASK) == 0) continue;
359359

360360
// back up to get the last 8 and look in more detail
361361
x -= 256;
362362

363-
for(int l=0; l<32; l++) {
363+
for (int l=0; l<32; l++) {
364364
final long y = UNSAFE.getLong(x+=8);
365-
if((y & LONG_MASK) != 0) {
365+
if ((y & LONG_MASK) != 0) {
366366
testLongNegative(y, (int) (x-sieveArrayAddress));
367367
}
368368
}

0 commit comments

Comments
 (0)