* Create a new double generator which creates doubles ranging from lo to hi
* based on the given {@link Distribution}.
*/
public static Generator<Double> doubles(double lo, double hi,
Distribution distribution) {
return new DoubleGenerator(lo, hi, distribution);
}