]> git.llucax.com Git - software/dgc/dgcbench.git/commitdiff
micro: Change constants to do a some more processing
authorLeandro Lucarella <llucax@gmail.com>
Mon, 5 Jul 2010 23:12:46 +0000 (20:12 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 11 Jul 2010 14:44:01 +0000 (11:44 -0300)
This will make measures more meaningful.

micro/big_arrays.d
micro/rnd_data.d
micro/tree.d

index a1f59c5c4830b6b44660d29ad171b6559b279281..3f0fb4f10f902dd6fcf2e137652544c23a34f1b6 100644 (file)
@@ -3,9 +3,9 @@
 // Sightly modified by Leandro Lucarella <llucax@gmail.com>
 // (some readability improvements and output removed)
 
-const IT = 100; // original: 300
-const N1 = 200; // original: 20_000
-const N2 = 400; // original: 40_000
+const IT = 300;
+const N1 = 20_000;
+const N2 = 40_000;
 
 class Individual
 {
index 3a1105cc49b3a191db1ab9416724122afd8cd7fb..aa713553bfbf8da02a8396f605eca6acf49e3802 100644 (file)
@@ -5,7 +5,7 @@
 
 import tango.math.random.Random;
 
-const IT = 5_000; // original: 50_000
+const IT = 50_000;
 
 void main() {
        // The real memory use, ~55 KiB (original: ~20 MiB)
index 005878e2b97679d1c83ca5286b056755a4137dab..a5179a3d2cd7867ddd7a6febafd119a75ffe105b 100644 (file)
@@ -25,8 +25,8 @@ TreeNode makeTree(int item, int depth) {
 }
 
 void main(char[][] args) {
-       const minDepth = 4;
-       int n = 6; // 13;
+       const minDepth = 5;
+       int n = 15;
        int maxDepth = (minDepth + 2) > n ? minDepth + 2 : n;
 
        int check = makeTree(0, maxDepth + 1).check;