Skip to content

Commit

Permalink
Change another mask operation to a bit shift.
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Aug 26, 2021
1 parent d8fdc7d commit da1e812
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1656,7 +1656,7 @@ private double edgeSample(long xx) {
break;
}
// uDiff < MAX_IE (upper-right triangle) or rejected as above the curve
u1 = randomInt63();
u1 = nextLong() >>> 1;
}
} else if (j < J_INFLECTION) {
if (j == 0) {
Expand Down

0 comments on commit da1e812

Please sign in to comment.