Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/18 15:27:53 (6 years ago)
Author:
pfleck
Message:

#2906 Fixed inverse transform early removal of columns.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisTransformation.cs

    r15846 r15858  
    2929using HeuristicLab.Parameters;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    31 using HeuristicLab.PluginInfrastructure;
    3231
    3332namespace HeuristicLab.Problems.DataAnalysis {
     
    8382      Parameters.Add(new ConstrainedValueParameter<StringValue>("Transformed Variable", new ItemSet<StringValue>(transformedVariables), transformedVariables.FirstOrDefault()));
    8483
    85       var transformations = new ItemSet<ITransformation>(ApplicationManager.Manager.GetInstances<ITransformation>());
    86       Parameters.Add(new ConstrainedValueParameter<ITransformation>("Transformation", transformations, transformations.OfType<IdentityTransformation>().Single()));
     84      //var transformations = new ItemSet<ITransformation>(ApplicationManager.Manager.GetInstances<ITransformation>());
     85      Parameters.Add(new ValueParameter<ITransformation>("Transformation", new IdentityTransformation()));
    8786
    8887      RegisterEventHandlers();
Note: See TracChangeset for help on using the changeset viewer.