Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 11:38:44 (10 years ago)
Author:
pfleck
Message:
  • Added Transformations to PreprocessingData
  • Added Transformations to DataAnalysisProblemData Parameters
  • Removed SymbolicExpressionTree as inverse transformation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/ITransformation.cs

    r10694 r10695  
    2020#endregion
    2121
     22using System.Collections;
    2223using System.Collections.Generic;
    2324using HeuristicLab.Core;
    2425
    2526namespace HeuristicLab.Problems.DataAnalysis {
    26   public interface ITransformation<T> : IParameterizedItem {
     27  public interface ITransformation : IParameterizedItem {
    2728    string Column { get; }
     29  }
     30
     31  public interface ITransformation<T> : ITransformation {
    2832    IEnumerable<T> Apply(IEnumerable<T> data);
    2933    IEnumerable<T> InverseApply(IEnumerable<T> data);
Note: See TracChangeset for help on using the changeset viewer.