java.util.Random.nextDouble() is slow for me and I need something really fast.
I did some google search and I\'ve found only integers based fast random generators.
Have you actually done benchmarking or profiling to show that nextDouble
is the bottleneck? Have you looked at alternatives such as MersenneTwister or L'Ecuyer's streams library? I'd suggest trying those with benchmarking, but there's no such thing as a free lunch. Improvements in speed will probably come at a cost of quality, and vice-versa.