D | RSUtils.java | 29 public static void genRandom(long seed, int factor, int offset, float array[]) { in genRandom() argument 32 array[i] = r.nextFloat() * factor + offset; in genRandom() 36 public static void genRandom(long seed, int factor, int offset, float array[], in genRandom() argument 44 array[i * stride + j] = r.nextFloat() * factor + offset; in genRandom() 49 public static void genRandom(long seed, int max, int factor, int offset, int array[]) { in genRandom() argument 52 array[i] = (r.nextInt(max) * factor + offset); in genRandom() 56 public static void genRandom(long seed, int factor, int offset, int array[], in genRandom() argument 64 array[i * stride + j] = r.nextInt() * factor + offset; in genRandom() 69 public static void genRandom(long seed, int max, int factor, int offset, int array[], in genRandom() argument 77 array[i * stride + j] = r.nextInt(max) * factor + offset; in genRandom()
|