Changeset 10778 for branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
- Timestamp:
- 04/23/14 14:17:14 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/CopyColumnTransformation.cs
r10773 r10778 50 50 : base(original, cloner) { 51 51 } 52 protected CopyColumnTransformation() {53 }54 52 public CopyColumnTransformation(IEnumerable<string> allowedColumns) 55 53 : base(allowedColumns) { -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LinearTransformation.cs
r10777 r10778 67 67 : base(original, cloner) { 68 68 } 69 protected LinearTransformation() {70 }71 69 public LinearTransformation(IEnumerable<string> allowedColumns) 72 70 : base(allowedColumns) { -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftDataToRangeTransformation.cs
r10777 r10778 28 28 protected ShiftDataToRangeTransformation(Transformation<double> original, Cloner cloner) 29 29 : base(original, cloner) { 30 }31 protected ShiftDataToRangeTransformation()32 : base() {33 30 } 34 31 public ShiftDataToRangeTransformation(IEnumerable<string> allowedColumns) -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/Transformation.cs
r10770 r10778 48 48 protected Transformation(bool deserializing) : base(deserializing) { } 49 49 protected Transformation(Transformation<T> original, Cloner cloner) : base(original, cloner) { } 50 protected Transformation() { }51 50 protected Transformation(IEnumerable<string> allowedColumns) { 52 51 var allowed = new ItemSet<StringValue>(allowedColumns.Select(e => new StringValue(e)));
Note: See TracChangeset
for help on using the changeset viewer.