X-Git-Url: https://git.llucax.com/software/dgc/dgcbench.git/blobdiff_plain/191a743bdcb087277284437dc57c32ea8f6cc993..9a32b4439eeadfda9d990b6e9c346debf55b22e5:/micro/tree.d diff --git a/micro/tree.d b/micro/tree.d index 005878e..a5179a3 100644 --- a/micro/tree.d +++ b/micro/tree.d @@ -25,8 +25,8 @@ TreeNode makeTree(int item, int depth) { } void main(char[][] args) { - const minDepth = 4; - int n = 6; // 13; + const minDepth = 5; + int n = 15; int maxDepth = (minDepth + 2) > n ? minDepth + 2 : n; int check = makeTree(0, maxDepth + 1).check;