- Timestamp:
- 01/15/14 13:09:00 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab 3.3.sln
r10320 r10341 1870 1870 HideSolutionNode = FALSE 1871 1871 EndGlobalSection 1872 GlobalSection(Performance) = preSolution1873 HasPerformanceSessions = true1874 EndGlobalSection1875 1872 EndGlobal -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10311 r10341 78 78 private static IList CreateColumn<T>(Dataset ds, int column, Func<string, T> selector) { 79 79 var list = new List<T>(ds.Rows); 80 for (int row = 0; row < ds.Rows; row++) {81 list [row] = selector(ds.GetValue(row, column));80 for (int row = 0; row < ds.Rows; ++row) { 81 list.Add(selector(ds.GetValue(row, column))); 82 82 } 83 83 return list;
Note: See TracChangeset
for help on using the changeset viewer.