- Timestamp:
- 03/27/14 12:49:33 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessorStarter.cs
r10673 r10676 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Problems.DataAnalysis; 28 using HeuristicLab.Problems.DataAnalysis.Symbolic;29 28 using HeuristicLab.Problems.DataAnalysis.Views; 30 29 using View = HeuristicLab.MainForm.WindowsForms.View; … … 35 34 public void Start(IDataAnalysisProblemData problemData, View currentView) { 36 35 IAlgorithm algorithm; 37 I SymbolicDataAnalysisProblem problem;36 IDataAnalysisProblem problem; 38 37 IItem parentItem = GetMostOuterContent(currentView, out algorithm, out problem); 39 38 var context = new PreprocessingContext(problemData, algorithm, problem); … … 41 40 } 42 41 43 private IItem GetMostOuterContent(Control control, out IAlgorithm algorithm, out I SymbolicDataAnalysisProblem problem) {42 private IItem GetMostOuterContent(Control control, out IAlgorithm algorithm, out IDataAnalysisProblem problem) { 44 43 algorithm = null; 45 44 problem = null; … … 52 51 algorithm = (IAlgorithm)itemView.Content; 53 52 } 54 if (itemView.Content is I SymbolicDataAnalysisProblem) {55 problem = (I SymbolicDataAnalysisProblem)itemView.Content;53 if (itemView.Content is IDataAnalysisProblem) { 54 problem = (IDataAnalysisProblem)itemView.Content; 56 55 } 57 56 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj
r10673 r10676 214 214 <Name>HeuristicLab.PluginInfrastructure-3.3</Name> 215 215 </ProjectReference> 216 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">217 <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>218 <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name>219 </ProjectReference>220 216 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Views\3.4\HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj"> 221 217 <Project>{3E9E8944-44FF-40BB-A622-3A4A7DD0F198}</Project> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/Plugin.cs.frame
r10673 r10676 34 34 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 35 35 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views","3.4")] 36 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")]37 36 public class HeuristicLabDataPreprocessingPlugin : PluginBase { 38 37 }
Note: See TracChangeset
for help on using the changeset viewer.