Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 13:43:58 (11 years ago)
Author:
rstoll
Message:
  • Renamed reOrderToIndices to ReOrderToIndices
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ManipulationLogic.cs

    r10369 r10535  
    115115        }
    116116
    117         reOrderToIndices(shuffledIndices);
     117        ReOrderToIndices(shuffledIndices);
    118118      }
    119119    }
    120120
    121     public void reOrderToIndices(IEnumerable<int> indices) {
     121    public void ReOrderToIndices(IEnumerable<int> indices) {
    122122      List<Tuple<int, int>> indicesTuple = new List<Tuple<int, int>>();
    123123
     
    126126      }
    127127
    128       reOrderToIndices(indicesTuple);
     128      ReOrderToIndices(indicesTuple);
    129129    }
    130130
    131     public void reOrderToIndices(IList<System.Tuple<int, int>> indices) {
     131    public void ReOrderToIndices(IList<System.Tuple<int, int>> indices) {
    132132      for (int i = 0; i < preprocessingData.Columns; ++i) {
    133133        if (preprocessingData.IsType<double>(i)) {
Note: See TracChangeset for help on using the changeset viewer.