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/DataAnalysisProblemData.cs

    r15856 r15858  
    310310        }
    311311
    312         bool transformedVariablePending = transformationsStack.Any(x => x.OriginalVariable == transformation.TransformedVariable);
     312        bool transformedVariablePending = transformationsStack.Any(x => x.OriginalVariable == transformation.TransformedVariable || x.TransformedVariable == transformation.TransformedVariable);
    313313        if (removeVirtualVariables && !transformedVariablePending)
    314314          modifiableDataset.RemoveVariable(transformation.TransformedVariable);
Note: See TracChangeset for help on using the changeset viewer.