Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 15:27:20 (10 years ago)
Author:
mleitner
Message:

Add FilteredPreprocessing data for applying and caching filter status

File:
1 edited

Legend:

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

    r10772 r10783  
    8484
    8585    protected IList<IList> CopyVariableValues(IList<IList> original) {
    86       var copy = new List<IList>(variableValues);
     86      var copy = new List<IList>(original);
    8787      for (int i = 0; i < original.Count; ++i) {
    88         variableValues[i] = (IList)Activator.CreateInstance(original[i].GetType(), original[i]);
     88        copy[i] = (IList)Activator.CreateInstance(original[i].GetType(), original[i]);
    8989      }
    9090      return copy;
Note: See TracChangeset for help on using the changeset viewer.