Lines Matching refs:depth
74 treeNode* BottomUpTree(long item, unsigned depth)
76 if (depth > 0)
79 BottomUpTree(2 * item - 1, depth - 1),
80 BottomUpTree(2 * item, depth - 1),
102 unsigned N, depth, minDepth, maxDepth, stretchDepth;
119 "stretch tree of depth %u\t check: %li\n",
128 for (depth = minDepth; depth <= maxDepth; depth += 2)
132 iterations = pow(2, maxDepth - depth + minDepth);
138 tempTree = BottomUpTree(i, depth);
142 tempTree = BottomUpTree(-i, depth);
149 "%li\t trees of depth %u\t check: %li\n",
151 depth,
154 } /* for(depth = minDepth...) */
158 "long lived tree of depth %u\t check: %li\n",