26package umontreal.ssj.rng;
58 st.resetStartStream();
62 st.resetStartSubstream();
66 st.resetNextSubstream();
74 return "Baker transformation of " + st.toString();
82 double u = st.nextDouble();
84 return 2.0 * (1.0 - u);
94 return i + (int) (
nextDouble() * (j - i + 1.0));
106 st.nextArrayOfDouble(u, start, n);
107 for (
int i = start; i < start + n; i++)
109 u[i] = 2.0 * (1.0 - u[i]);
124 for (
int ii = start; ii < start + n; ii++)
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...