public DecisionTree(Dictionary <string, List <string> > table, string criterion) { _table = table; _root = MakeDecisionTreeAndGetRoot(criterion); _nonCountedCriterions = table.Keys.ToList(); }