Changeset 13512
- Timestamp:
- 01/15/16 12:58:38 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingMenuItem.cs
r13507 r13512 24 24 using HeuristicLab.MainForm; 25 25 using HeuristicLab.Optimizer; 26 using HeuristicLab.Problems.DataAnalysis; 26 27 27 28 namespace HeuristicLab.DataPreprocessing.Views { … … 42 43 43 44 public override void Execute() { 44 MainFormManager.MainForm.ShowContent(new PreprocessingContext( ));45 MainFormManager.MainForm.ShowContent(new PreprocessingContext(new RegressionProblemData())); 45 46 } 46 47 -
trunk/sources/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs
r13508 r13512 44 44 45 45 #region Constructors 46 public PreprocessingContext()47 : this(new RegressionProblemData()) {48 }49 46 public PreprocessingContext(IDataAnalysisProblemData problemData, IItem source = null) 50 47 : base("Data Preprocessing") {
Note: See TracChangeset
for help on using the changeset viewer.