Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 15:43:05 (10 years ago)
Author:
mleitner
Message:

Refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/SearchLogic.cs

    r10978 r11002  
    3131    private Dictionary<int, IList<int>> MissingValueIndicies { get; set; }
    3232    private Dictionary<int, IList> ValuesWithoutNaN { get; set; }
     33
     34    public IEnumerable<string> VariableNames {
     35      get { return preprocessingData.VariableNames; }
     36    }
     37
     38    public int Columns {
     39      get { return preprocessingData.Columns; }
     40    }
     41
     42    public int Rows {
     43      get { return preprocessingData.Rows; }
     44    }
    3345
    3446    public SearchLogic(ITransactionalPreprocessingData thePreprocessingData) {
Note: See TracChangeset for help on using the changeset viewer.