All output was commented anyways, so importing tango.io.Stdout would only
need to some unneeded "startup-time" allocations.
// Modified by Leandro Lucarella
// (ported to Tango)
// Modified by Leandro Lucarella
// (ported to Tango)
import tango.util.Convert;
alias char[] string;
import tango.util.Convert;
alias char[] string;
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);
- //Stdout(iterations * 2)("\t trees of depth ")(depth)
- // ("\t check: ")(check);
- //Stdout("long lived tree of depth ")(maxDepth)("\t check: ")
- // (longLivedTree.ItemCheck);
-