Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8279598: Provide adapter from RandomGenerator to Random #7001

Closed
wants to merge 46 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
6b996a2
Create wrapper for RandomGenerator interface
YShow Jan 8, 2022
bee8730
Create asRandom() method in RandomGenerator
YShow Jan 8, 2022
9198712
Fix imports
YShow Jan 8, 2022
8531d67
implement RandomGenerator interface
YShow Jan 8, 2022
595cced
Add static method to create wrapper
YShow Jan 8, 2022
01f1ca8
Make use of the new wrapper function
YShow Jan 8, 2022
0ba0d5f
Add copyright notice
YShow Jan 8, 2022
be885c5
Rewrite javadoc
YShow Jan 8, 2022
d3c8c64
Fix whitespace and tab
YShow Jan 8, 2022
b010f50
No need to synchronize setSeed
YShow Jan 11, 2022
fbdf496
No need to synchronize setSeed nextGaussian
YShow Jan 11, 2022
df78e05
Change variable name and wording in javadocs
YShow Jan 26, 2022
aadef6f
Change name of function from wrapRandom to wrap
YShow Jan 26, 2022
1bd6064
remove tabs
YShow Jan 28, 2022
c297d42
make sure setseed its initialized and throw
YShow Jan 28, 2022
953e506
Use final on initialized variable
YShow Jan 29, 2022
ef48bdb
fix missing periods
YShow Jan 29, 2022
7b7c803
Revert "remove tabs"
YShow Feb 20, 2022
e221ffc
Remove asRandom() from RandomGenerator
YShow Feb 20, 2022
66f459a
add RandomWrapper as static nested class
YShow Feb 20, 2022
24abdb5
Remove RandomWrapper from jdk.internal.util.random
YShow Feb 20, 2022
365110d
Add static function from() and its javadoc
YShow Feb 20, 2022
9f2855a
add tests and fix javadoc lint error
YShow Feb 20, 2022
78f55fc
Remove whitespace and tabs
YShow Feb 20, 2022
5dc0e1e
remove missed whitespace
YShow Feb 20, 2022
399aa22
Remove changes from RandomGenerator
YShow Feb 23, 2022
65687cd
check from master branch
YShow Feb 23, 2022
859f5e0
change indentation
YShow Feb 25, 2022
b002205
change wrong indentation
YShow Feb 25, 2022
7bc4505
Use var instead of ArrayList raw
YShow Feb 25, 2022
60c1e38
Update javadoc
YShow Feb 25, 2022
0e48edf
fix wrong identation
YShow Mar 1, 2022
b48eda9
Changes proposed by Stuart Marks, ExE Boss and liach
YShow Mar 5, 2022
d5ddcb1
Do not allow serialization
YShow Mar 5, 2022
5c5bd87
Change variable name
YShow Mar 5, 2022
87236da
Fix wrong whitespace
YShow Mar 5, 2022
d6376b2
Update javadoc
YShow Mar 6, 2022
8e2018e
Remove atomicLong allocation and override next(int) method to throw UOE
YShow Mar 11, 2022
8155593
Merge branch 'randomwrapper' of https://github.com/YShow/jdk.git into…
YShow Mar 11, 2022
53c651f
make changes proposed
YShow Mar 12, 2022
406e2bc
Fix SplittableRandomTest.
stuart-marks Mar 15, 2022
2208f84
add since in javadoc
YShow Mar 16, 2022
3ee6e19
Add nicer toString method to random wrapper
YShow Apr 21, 2022
a7c1818
Update setSeed docs on Random class
YShow Apr 21, 2022
a28ba8e
Update specs of setSeed() and next(bits).
stuart-marks Apr 27, 2022
bc5516c
Update full name
YShow May 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/jdk/java/util/concurrent/tck/SplittableRandomTest.java
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.LongAdder;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.DoubleStream;
@@ -572,6 +573,7 @@ public void testShouldImplementMostRandomMethods() throws Throwable {
};
List<Method> forgotten =
Arrays.stream(java.util.Random.class.getMethods())
.filter(method -> (method.getModifiers() & Modifier.STATIC) == 0)
.filter(wasForgotten)
.collect(Collectors.toList());
if (!forgotten.isEmpty())