- Timestamp:
- 12/18/13 15:39:53 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10249 r10250 81 81 <Compile Include="Interfaces\IPreprocessingDataManipulation.cs" /> 82 82 <Compile Include="Implementations\FilterContent.cs" /> 83 <Compile Include="Implementations\DataPreprocessorStarter.cs" /> 83 84 <Compile Include="Implementations\FilterLogic.cs" /> 84 85 <Compile Include="Implementations\HistogramContent.cs" /> … … 106 107 <Compile Include="Implementations\SearchLogic.cs" /> 107 108 <Compile Include="Implementations\StatisticsLogic.cs" /> 108 <Compile Include="Views\DataGridContentView.cs"> 109 <SubType>UserControl</SubType> 110 </Compile> 109 <Compile Include="Views\DataGridContentView.cs" /> 111 110 <Compile Include="Views\DataGridContentView.Designer.cs"> 112 111 <DependentUpon>DataGridContentView.cs</DependentUpon> … … 178 177 <Private>False</Private> 179 178 </ProjectReference> 179 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Views\3.4\HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj"> 180 <Project>{3e9e8944-44ff-40bb-a622-3a4a7dd0f198}</Project> 181 <Name>HeuristicLab.Problems.DataAnalysis.Views-3.4</Name> 182 </ProjectReference> 180 183 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj"> 181 184 <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs
r10240 r10250 28 28 [Item("PreprocessingContext", "PreprocessingContext")] 29 29 public class PreprocessingContext : Item, IPreprocessingContext { 30 public PreprocessingContext(I PreprocessingData data, IItem parentItem, IDataAnalysisProblemData dataAnalysisProblemData, IAlgorithm algorithm) {31 Data = data;30 public PreprocessingContext(IDataAnalysisProblemData dataAnalysisProblemData, IItem parentItem, IAlgorithm algorithm) { 31 Data = new PreprocessingData(dataAnalysisProblemData); 32 32 ParentItem = parentItem; 33 33 DataAnalysisProblemData = dataAnalysisProblemData; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Plugin.cs.frame
r10240 r10250 32 32 [PluginDependency("HeuristicLab.Core", "3.3")] 33 33 [PluginDependency("HeuristicLab.Collections", "3.3")] 34 [PluginDependency("HeuristicLab.Data","3.3")] 35 [PluginDependency("HeuristicLab.Data.Views","3.3")] 34 36 [PluginDependency("HeuristicLab.Persistence", "3.3")] 35 37 [PluginDependency("HeuristicLab.Optimization", "3.3")] … … 37 39 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 38 40 [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")] 41 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views","3.4")] 39 42 public class HeuristicLabDataPreprocessingPlugin : PluginBase { 40 43 }
Note: See TracChangeset
for help on using the changeset viewer.