X-Git-Url: https://git.llucax.com/software/dgc/dgcbench.git/blobdiff_plain/254a2ba31ffdfd67235959c657551e029df4fab5..e5ddd0131bf58dc9fa5505c253883caa448a547b:/micro/shootout_binarytrees.d 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; }