]> git.llucax.com Git - software/dgc/dgcbench.git/blobdiff - micro/shootout_binarytrees.d
Always link against tango-user library
[software/dgc/dgcbench.git] / micro / shootout_binarytrees.d
index 072a37db3b819d28cdd48deaaa6370161992cdfc..7663458e7b862382ee197fbc2ced558b526aec41 100644 (file)
@@ -3,7 +3,6 @@
 // Modified by Leandro Lucarella
 // (ported to Tango)
 
-import tango.io.Stdout;
 import tango.util.Convert;
 
 alias char[] string;
@@ -17,8 +16,6 @@ int main(string[] args)
        int stretchDepth = maxDepth + 1;
 
        TreeNode stretchTree = TreeNode.BottomUpTree(0, stretchDepth);
-       //Stdout("stretch tree of depth ")(stretchDepth)("\t check: ")
-       //              (stretchTree.ItemCheck);
 
        TreeNode longLivedTree = TreeNode.BottomUpTree(0, maxDepth);
 
@@ -38,13 +35,8 @@ int main(string[] args)
                        //delete tempTree;
                }
 
-               //Stdout(iterations * 2)("\t trees of depth ")(depth)
-               //              ("\t check: ")(check);
        }
 
-       //Stdout("long lived tree of depth ")(maxDepth)("\t check: ")
-       //              (longLivedTree.ItemCheck);
-
        return 0;
 }