Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 15:56:31 (10 years ago)
Author:
pfleck
Message:
  • Implemented PreprocessingTransformator to apply Transformations.
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
1 added
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10783 r10786  
    7878    <Compile Include="Implementations\DataGridLogic.cs" />
    7979    <Compile Include="Interfaces\IFilteredPreprocessingData.cs" />
     80    <Compile Include="PreprocessingTransformator.cs" />
    8081    <Compile Include="Utils\DataPreprocessingChangedEvent.cs" />
    8182    <Compile Include="Implementations\Filter\ComparisonFilter.cs" />
     
    9192    <Compile Include="Implementations\StatisticsContent.cs" />
    9293    <Compile Include="Implementations\TransformationContent.cs" />
    93     <Compile Include="Implementations\TransformationLogic.cs" />
    9494    <Compile Include="Interfaces\IFilterLogic.cs" />
    9595    <Compile Include="Interfaces\IChartLogic.cs" />
     
    178178    </ProjectReference>
    179179  </ItemGroup>
    180   <ItemGroup>
    181     <Folder Include="Implementations\Transformations\" />
    182   </ItemGroup>
    183180  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    184181  <PropertyGroup>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs

    r10783 r10786  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2625using HeuristicLab.Optimization;
    2726using HeuristicLab.Problems.DataAnalysis;
    28 using HeuristicLab.Problems.DataAnalysis.Symbolic;
    29 using Variable = HeuristicLab.Problems.DataAnalysis.Symbolic.Variable;
    3027using HeuristicLab.DataPreprocessing.Implementations;
    3128using HeuristicLab.DataPreprocessing.Interfaces;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs

    r10783 r10786  
    5252    public PreprocessingData(IDataAnalysisProblemData problemData)
    5353      : base() {
    54       Name = "-";
     54      Name = "Preprocessing Data";
     55
     56      transformations = new List<ITransformation>();
    5557
    5658      variableNames = new List<string>(problemData.Dataset.VariableNames);
Note: See TracChangeset for help on using the changeset viewer.