Changeset 10255 for branches/DataPreprocessing
- Timestamp:
- 12/18/13 16:29:48 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingDataManipulation.cs
r10253 r10255 119 119 } 120 120 121 public void reOrdertoIndices(IEnumerable<int> indices) 122 { 123 List<Tuple<int, int>> indicesTuple = new List<Tuple<int, int>>(); 124 125 for (int i = 0; i < indices.Count(); ++i) { 126 new Tuple<int, int>(i, indices.ElementAt(i)); 127 } 128 129 reOrdertoIndices(indicesTuple); 130 } 131 121 132 public void reOrdertoIndices(IList<Tuple<int, int>> indices) { 122 133 foreach (string variableName in preprocessingData.VariableNames) {
Note: See TracChangeset
for help on using the changeset viewer.