Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10535


Ignore:
Timestamp:
03/05/14 13:43:58 (10 years ago)
Author:
rstoll
Message:
  • Renamed reOrderToIndices to ReOrderToIndices
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
3 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)) {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs

    r10369 r10535  
    33namespace HeuristicLab.DataPreprocessing {
    44  public interface IManipulationLogic {
    5     void reOrderToIndices(IEnumerable<int> indices);
    6     void reOrderToIndices(IList<Tuple<int, int>> indices);
     5    void ReOrderToIndices(IEnumerable<int> indices);
     6    void ReOrderToIndices(IList<Tuple<int, int>> indices);
    77    void ReplaceIndicesByAverageValue(int columnIndex, IEnumerable<int> rowIndices);
    88    void ReplaceIndicesByLinearInterpolationOfNeighbours(int columnIndex, IEnumerable<int> rowIndices);
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs

    r10534 r10535  
    4949
    5050    private void btnApplySort_Click(object sender, System.EventArgs e) {
    51       Content.PreprocessingDataManipulation.reOrderToIndices(virtualRowIndices);
     51      Content.PreprocessingDataManipulation.ReOrderToIndices(virtualRowIndices);
    5252      OnContentChanged();
    5353    }
Note: See TracChangeset for help on using the changeset viewer.