Changeset 10548
- Timestamp:
- 03/05/14 16:18:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10547 r10548 42 42 : base(original, cloner) { 43 43 variableValues = new Dictionary<int, IList>(original.variableValues); 44 for (int i = 0; i < variableValues.Count; i++) 45 variableValues[i] = new ArrayList(original.variableValues[i]); 46 variableNames = new List<string>(original.variableNames); 47 trainingToTestRatio = original.trainingToTestRatio; 44 48 } 45 49
Note: See TracChangeset
for help on using the changeset viewer.