Merge pull request #718 from kilojoules/patch-2

fix minor typo
This commit is contained in:
Yuan (Terry) Tang 2016-01-01 22:07:35 -06:00
commit fa205cdaf8

View File

@ -69,7 +69,7 @@ class TreePruner: public IUpdater {
} }
} }
if (silent == 0) { if (silent == 0) {
utils::Printf("tree pruning end, %d roots, %d extra nodes, %d pruned nodes ,max_depth=%d\n", utils::Printf("tree pruning end, %d roots, %d extra nodes, %d pruned nodes, max_depth=%d\n",
tree.param.num_roots, tree.num_extra_nodes(), npruned, tree.MaxDepth()); tree.param.num_roots, tree.num_extra_nodes(), npruned, tree.MaxDepth());
} }
} }