From b452020bf30fb380faf982486739ac83abc0b1a4 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 26 Aug 2009 21:11:30 -0300 Subject: [PATCH] micro/shootout_binarytrees.d: Remove output All output was commented anyways, so importing tango.io.Stdout would only need to some unneeded "startup-time" allocations. --- micro/shootout_binarytrees.d | 8 -------- 1 file changed, 8 deletions(-) diff --git a/micro/shootout_binarytrees.d b/micro/shootout_binarytrees.d index 072a37d..7663458 100644 --- a/micro/shootout_binarytrees.d +++ b/micro/shootout_binarytrees.d @@ -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; } -- 2.43.0