public RandomTree(int maxDepth) { decisionTreeRoot = new DecisionTree(maxDepth, new RandomStumpInfoGain()); }