Changeset 5772 for branches/DataAnalysis Refactoring
- Timestamp:
- 03/21/11 00:35:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/CrossValidationView.cs
r5617 r5772 278 278 if (problemTypeSelectorDialog.ShowDialog(this) == DialogResult.OK) { 279 279 try { 280 Content.Problem = (IDataAnalysisProblem <IDataAnalysisProblemData>)problemTypeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();280 Content.Problem = (IDataAnalysisProblem)problemTypeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(); 281 281 } 282 282 catch (Exception ex) { … … 295 295 try { 296 296 if (error != null) throw error; 297 IDataAnalysisProblem <IDataAnalysisProblemData> problem = content as IDataAnalysisProblem<IDataAnalysisProblemData>;297 IDataAnalysisProblem problem = content as IDataAnalysisProblem; 298 298 if (problem == null && (Content.Algorithm.ProblemType.IsAssignableFrom(content.GetType()))) 299 299 Invoke(new Action(() =>
Note: See TracChangeset
for help on using the changeset viewer.