]> git.llucax.com Git - software/dgc/dgcbench.git/blob - micro/rnd_data_2.d
29d3750693a2c6c268ba46e31994c5aa91a5d7a9
[software/dgc/dgcbench.git] / micro / rnd_data_2.d
1 // Written by Kevin Bealer <kevinbealer@gmail.com>
2 // Found at http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D.announce&article_id=6978
3 // Sightly modified by Leandro Lucarella <llucax@gmail.com>
4 // (changed not to print anything and lower the total iterations; ported to
5 // Tango)
6
7 import tango.math.random.Random;
8
9 int main(char[][] args)
10 {
11      int[][] stuff;
12
13      int NUM = 2_000_000;
14
15      stuff.length = 20;
16
17      auto rand = new Random();
18
19      for(int i = 0; i < 200; i++) {
20          int[] arr = new int[NUM];
21
22          for(int j = 0; j < arr.length; j++) {
23              rand(arr[j]);
24          }
25
26          int zig = i;
27          if (zig > stuff.length)
28              zig = rand.uniform!(int) % stuff.length;
29
30          stuff[zig] = arr;
31      }
32
33      return 0;
34 }
35