- Timestamp:
- 05/08/13 14:32:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Problems.DecisionListClassification/3.3/DecisionListClassificationProblemData.cs
r9411 r9468 133 133 if (dataset == null) throw new ArgumentNullException("The dataset must not be null."); 134 134 if (allowedConditionVariables == null) throw new ArgumentNullException("The allowedActionVariables must not be null."); 135 136 if (allowedConditionVariables.Except(dataset.DoubleVariables).Any())137 throw new ArgumentException("All allowed condition variables must be present in the dataset and of type double.");138 135 139 136 //var validTargetVariableValues = CheckVariablesForPossibleTargetVariables(dataset).Select(x => new StringValue(x).AsReadOnly()).ToList();
Note: See TracChangeset
for help on using the changeset viewer.