Changeset 11448 for trunk/sources/HeuristicLab.Optimizer/3.3/StartPage.cs
- Timestamp:
- 10/10/14 16:24:17 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimizer/3.3/StartPage.cs
r11092 r11448 65 65 using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf")) 66 66 firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText); 67 } catch (Exception) { } 67 } 68 catch (Exception) { } 68 69 69 70 samplesListView.Enabled = false; … … 111 112 112 113 OnAllSamplesLoaded(); 113 } finally { 114 } 115 finally { 114 116 MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView); 115 117 } … … 124 126 OnSampleLoaded(item, group, 1.0 / count); 125 127 } 126 } catch (Exception) { 127 } finally { 128 } 129 catch (Exception) { 130 } 131 finally { 128 132 if (File.Exists(path)) { 129 133 File.Delete(path); // make sure we remove the temporary file … … 140 144 var dataAnalysisProblems = new List<string> { "SGP_SymbClass", "SGP_SymbReg", "OSGP_TimeSeries", "GE_SymbReg", "GPR" }; 141 145 groupLookup[dataAnalysisGroup] = dataAnalysisProblems; 142 var scripts = new List<string> { "GA_QAP_Script", "GUI_Automation_Script", "OSGA_Rastrigin_Script" }; 146 var scripts = new List<string> { "GA_QAP_Script", "GUI_Automation_Script", "OSGA_Rastrigin_Script", 147 "GridSearch_RF_Classification", "GridSearch_RF_Regression", 148 "GridSearch_SVM_Classification", "GridSearch_SVM_Regression" }; 143 149 groupLookup[scriptsGroup] = scripts; 144 150 } … … 179 185 mainForm.SetWaitCursor(); 180 186 mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone()); 181 } finally { 187 } 188 finally { 182 189 mainForm.ResetWaitCursor(); 183 190 }
Note: See TracChangeset
for help on using the changeset viewer.