]> git.llucax.com Git - software/dgc/dgcbench.git/commitdiff
micro/shootout_binarytrees.d: Remove output
authorLeandro Lucarella <llucax@gmail.com>
Thu, 27 Aug 2009 00:11:30 +0000 (21:11 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 27 Aug 2009 00:11:30 +0000 (21:11 -0300)
All output was commented anyways, so importing tango.io.Stdout would only
need to some unneeded "startup-time" allocations.

micro/shootout_binarytrees.d

index 072a37db3b819d28cdd48deaaa6370161992cdfc..7663458e7b862382ee197fbc2ced558b526aec41 100644 (file)
@@ -3,7 +3,6 @@
 // Modified by Leandro Lucarella
 // (ported to Tango)
 
 // Modified by Leandro Lucarella
 // (ported to Tango)
 
-import tango.io.Stdout;
 import tango.util.Convert;
 
 alias char[] string;
 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);
        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);
 
 
        TreeNode longLivedTree = TreeNode.BottomUpTree(0, maxDepth);
 
@@ -38,13 +35,8 @@ int main(string[] args)
                        //delete tempTree;
                }
 
                        //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;
 }
 
        return 0;
 }