Skip to content

Commit 0e70d45

Browse files
committedFeb 1, 2022
8280950: RandomGenerator:NextDouble() default behavior non conformant after JDK-8280550 fix
Reviewed-by: bpb, jlaskey
1 parent 1ea0146 commit 0e70d45

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed
 

‎src/java.base/share/classes/jdk/internal/util/random/RandomSupport.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -645,7 +645,7 @@ public static double boundedNextDouble(RandomGenerator rng, double origin, doubl
645645
if (origin < bound) {
646646
r = r * (bound - origin) + origin;
647647
if (r >= bound) // may need to correct a rounding problem
648-
r = Math.nextAfter(r, origin);
648+
r = Math.nextAfter(bound, origin);
649649
}
650650
return r;
651651
}

‎test/jdk/java/util/Random/RandomNextDoubleBoundary.java

+40-1
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,19 @@
2424
/*
2525
* @test
2626
* @summary Verify nextDouble stays within range
27-
* @bug 8280550
27+
* @bug 8280550 8280950
2828
*/
2929

3030
import java.util.SplittableRandom;
31+
import java.util.random.RandomGenerator;
3132

3233
public class RandomNextDoubleBoundary {
3334
public static void main(String... args) {
35+
negativeBounds();
36+
positiveBounds();
37+
}
38+
39+
private static void negativeBounds() {
3440
// Both bounds are negative
3541
double lowerBound = -1.0000000000000002;
3642
double upperBound = -1.0;
@@ -49,4 +55,37 @@ public static void main(String... args) {
4955
throw new RuntimeException("Less than lower bound");
5056
}
5157
}
58+
59+
private static void positiveBounds() {
60+
double[][] originAndBounds = {{10, 100},
61+
{12345, 123456},
62+
{5432167.234, 54321678.1238}};
63+
for (double[] originAndBound : originAndBounds) {
64+
nextDoublesWithRange(originAndBound[0], originAndBound[1]);
65+
}
66+
}
67+
68+
public static void nextDoublesWithRange(double origin, double bound) {
69+
RandomGenerator rg = new RandomGenerator() {
70+
@Override
71+
public double nextDouble() {
72+
return Double.MAX_VALUE;
73+
}
74+
75+
@Override
76+
public long nextLong() {
77+
return 0;
78+
}
79+
};
80+
double value = rg.nextDouble(origin, bound);
81+
82+
assertTrue(value >= origin);
83+
assertTrue(value < bound);
84+
}
85+
86+
public static void assertTrue(boolean condition) {
87+
if (!condition) {
88+
throw new AssertionError();
89+
}
90+
}
5291
}

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Feb 1, 2022

@openjdk-notifier[bot]

jddarcy commented on Feb 9, 2022

@jddarcy
MemberAuthor

/backport jdk18u

openjdk[bot] commented on Feb 9, 2022

@openjdk[bot]

@jddarcy the backport was successfully created on the branch jddarcy-backport-0e70d450 in my personal fork of openjdk/jdk18u. To create a pull request with this backport targeting openjdk/jdk18u:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 0e70d450 from the openjdk/jdk repository.

The commit being backported was authored by Joe Darcy on 1 Feb 2022 and was reviewed by Brian Burkhalter and Jim Laskey.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk18u:

$ git fetch https://github.com/openjdk-bots/jdk18u jddarcy-backport-0e70d450:jddarcy-backport-0e70d450
$ git checkout jddarcy-backport-0e70d450
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk18u jddarcy-backport-0e70d450
Please sign in to comment.