- Timestamp:
- 03/05/14 13:43:58 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ManipulationLogic.cs
r10369 r10535 115 115 } 116 116 117 reOrderToIndices(shuffledIndices);117 ReOrderToIndices(shuffledIndices); 118 118 } 119 119 } 120 120 121 public void reOrderToIndices(IEnumerable<int> indices) {121 public void ReOrderToIndices(IEnumerable<int> indices) { 122 122 List<Tuple<int, int>> indicesTuple = new List<Tuple<int, int>>(); 123 123 … … 126 126 } 127 127 128 reOrderToIndices(indicesTuple);128 ReOrderToIndices(indicesTuple); 129 129 } 130 130 131 public void reOrderToIndices(IList<System.Tuple<int, int>> indices) {131 public void ReOrderToIndices(IList<System.Tuple<int, int>> indices) { 132 132 for (int i = 0; i < preprocessingData.Columns; ++i) { 133 133 if (preprocessingData.IsType<double>(i)) {
Note: See TracChangeset
for help on using the changeset viewer.