- Timestamp:
- 04/23/14 15:56:31 (11 years ago)
- 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 78 78 <Compile Include="Implementations\DataGridLogic.cs" /> 79 79 <Compile Include="Interfaces\IFilteredPreprocessingData.cs" /> 80 <Compile Include="PreprocessingTransformator.cs" /> 80 81 <Compile Include="Utils\DataPreprocessingChangedEvent.cs" /> 81 82 <Compile Include="Implementations\Filter\ComparisonFilter.cs" /> … … 91 92 <Compile Include="Implementations\StatisticsContent.cs" /> 92 93 <Compile Include="Implementations\TransformationContent.cs" /> 93 <Compile Include="Implementations\TransformationLogic.cs" />94 94 <Compile Include="Interfaces\IFilterLogic.cs" /> 95 95 <Compile Include="Interfaces\IChartLogic.cs" /> … … 178 178 </ProjectReference> 179 179 </ItemGroup> 180 <ItemGroup>181 <Folder Include="Implementations\Transformations\" />182 </ItemGroup>183 180 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 184 181 <PropertyGroup> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs
r10783 r10786 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;26 25 using HeuristicLab.Optimization; 27 26 using HeuristicLab.Problems.DataAnalysis; 28 using HeuristicLab.Problems.DataAnalysis.Symbolic;29 using Variable = HeuristicLab.Problems.DataAnalysis.Symbolic.Variable;30 27 using HeuristicLab.DataPreprocessing.Implementations; 31 28 using HeuristicLab.DataPreprocessing.Interfaces; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10783 r10786 52 52 public PreprocessingData(IDataAnalysisProblemData problemData) 53 53 : base() { 54 Name = "-"; 54 Name = "Preprocessing Data"; 55 56 transformations = new List<ITransformation>(); 55 57 56 58 variableNames = new List<string>(problemData.Dataset.VariableNames);
Note: See TracChangeset
for help on using the changeset viewer.