File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/main/java/de/tilman_neumann/jml/factor/siqs/sieve Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ private void testLongPositive(long y, int x) {
388388 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (x +2 , (y0 >>16 ) & 0xFF );
389389 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (x +3 , (y0 >>24 ) & 0xFF );
390390 }
391- if ((y & UPPER_MASK ) != 0 ) {
391+ if ((y & UPPER_MASK ) != 0 ) {
392392 final int y1 = (int ) (y >> 32 );
393393 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (x +4 , y1 & 0xFF );
394394 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (x +5 , (y1 >> 8 ) & 0xFF );
@@ -405,7 +405,7 @@ private void testLongNegative(long y, int x) {
405405 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (-(x +2 ), (y0 >>16 ) & 0xFF );
406406 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (-(x +3 ), (y0 >>24 ) & 0xFF );
407407 }
408- if ((y & UPPER_MASK ) != 0 ) {
408+ if ((y & UPPER_MASK ) != 0 ) {
409409 final int y1 = (int ) (y >> 32 );
410410 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (-(x +4 ), y1 & 0xFF );
411411 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (-(x +5 ), (y1 >> 8 ) & 0xFF );
Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ private void testLongPositive(long y, int x) {
503503 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (x +2 , (y0 >>16 ) & 0xFF );
504504 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (x +3 , (y0 >>24 ) & 0xFF );
505505 }
506- if ((y & UPPER_MASK ) != 0 ) {
506+ if ((y & UPPER_MASK ) != 0 ) {
507507 final int y1 = (int ) (y >> 32 );
508508 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (x +4 , y1 & 0xFF );
509509 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (x +5 , (y1 >> 8 ) & 0xFF );
@@ -520,7 +520,7 @@ private void testLongNegative(long y, int x) {
520520 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (-(x +2 ), (y0 >>16 ) & 0xFF );
521521 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (-(x +3 ), (y0 >>24 ) & 0xFF );
522522 }
523- if ((y & UPPER_MASK ) != 0 ) {
523+ if ((y & UPPER_MASK ) != 0 ) {
524524 final int y1 = (int ) (y >> 32 );
525525 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (-(x +4 ), y1 & 0xFF );
526526 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (-(x +5 ), (y1 >> 8 ) & 0xFF );
Original file line number Diff line number Diff line change @@ -492,7 +492,7 @@ private void testLongPositive(long y, int x) {
492492 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (x +2 , (y0 >>16 ) & 0xFF );
493493 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (x +3 , (y0 >>24 ) & 0xFF );
494494 }
495- if ((y & UPPER_MASK ) != 0 ) {
495+ if ((y & UPPER_MASK ) != 0 ) {
496496 final int y1 = (int ) (y >> 32 );
497497 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (x +4 , y1 & 0xFF );
498498 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (x +5 , (y1 >> 8 ) & 0xFF );
@@ -509,7 +509,7 @@ private void testLongNegative(long y, int x) {
509509 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (-(x +2 ), (y0 >>16 ) & 0xFF );
510510 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (-(x +3 ), (y0 >>24 ) & 0xFF );
511511 }
512- if ((y & UPPER_MASK ) != 0 ) {
512+ if ((y & UPPER_MASK ) != 0 ) {
513513 final int y1 = (int ) (y >> 32 );
514514 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (-(x +4 ), y1 & 0xFF );
515515 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (-(x +5 ), (y1 >> 8 ) & 0xFF );
Original file line number Diff line number Diff line change @@ -492,7 +492,7 @@ private void testLongPositive(long y, int x) {
492492 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (x +2 , (y0 >>16 ) & 0xFF );
493493 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (x +3 , (y0 >>24 ) & 0xFF );
494494 }
495- if ((y & UPPER_MASK ) != 0 ) {
495+ if ((y & UPPER_MASK ) != 0 ) {
496496 final int y1 = (int ) (y >> 32 );
497497 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (x +4 , y1 & 0xFF );
498498 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (x +5 , (y1 >> 8 ) & 0xFF );
@@ -509,7 +509,7 @@ private void testLongNegative(long y, int x) {
509509 if ((y0 & 0x800000 ) != 0 ) addSmoothCandidate (-(x +2 ), (y0 >>16 ) & 0xFF );
510510 if ((y0 & 0x80000000 ) != 0 ) addSmoothCandidate (-(x +3 ), (y0 >>24 ) & 0xFF );
511511 }
512- if ((y & UPPER_MASK ) != 0 ) {
512+ if ((y & UPPER_MASK ) != 0 ) {
513513 final int y1 = (int ) (y >> 32 );
514514 if ((y1 & 0x80 ) != 0 ) addSmoothCandidate (-(x +4 ), y1 & 0xFF );
515515 if ((y1 & 0x8000 ) != 0 ) addSmoothCandidate (-(x +5 ), (y1 >> 8 ) & 0xFF );
You can’t perform that action at this time.
0 commit comments