Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/26/14 16:09:03 (10 years ago)
Author:
tsteinre
Message:

created LinearTransformation (not ready yet)

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations
Files:
1 added
1 edited

Legend:

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

    r10669 r10671  
    2828  public abstract class Transformation : ParameterizedNamedItem {
    2929
     30    protected new ParameterCollection Parameters {
     31      get { return base.Parameters; }
     32    }
     33
    3034    protected ITransactionalPreprocessingData PreprocessingData { get; private set; }
    3135
    3236    protected string Column { get; private set; }
     37
     38    protected Transformation() {
     39    }
    3340
    3441    protected Transformation(ITransactionalPreprocessingData preprocessingData, string column) {
     
    3946    protected Transformation(Transformation original, Cloner cloner)
    4047      : base(original, cloner) {
     48      PreprocessingData = (ITransactionalPreprocessingData)original.PreprocessingData.Clone();
     49      Column = original.Column;
    4150    }
    4251
Note: See TracChangeset for help on using the changeset viewer.