Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11448


Ignore:
Timestamp:
10/10/14 16:24:17 (10 years ago)
Author:
bburlacu
Message:

#2237: Added script to the startpage (forgot to commit changes to StartPage.cs).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/StartPage.cs

    r11092 r11448  
    6565        using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf"))
    6666          firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
    67       } catch (Exception) { }
     67      }
     68      catch (Exception) { }
    6869
    6970      samplesListView.Enabled = false;
     
    111112
    112113        OnAllSamplesLoaded();
    113       } finally {
     114      }
     115      finally {
    114116        MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView);
    115117      }
     
    124126          OnSampleLoaded(item, group, 1.0 / count);
    125127        }
    126       } catch (Exception) {
    127       } finally {
     128      }
     129      catch (Exception) {
     130      }
     131      finally {
    128132        if (File.Exists(path)) {
    129133          File.Delete(path); // make sure we remove the temporary file
     
    140144      var dataAnalysisProblems = new List<string> { "SGP_SymbClass", "SGP_SymbReg", "OSGP_TimeSeries", "GE_SymbReg", "GPR" };
    141145      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" };
    143149      groupLookup[scriptsGroup] = scripts;
    144150    }
     
    179185          mainForm.SetWaitCursor();
    180186          mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone());
    181         } finally {
     187        }
     188        finally {
    182189          mainForm.ResetWaitCursor();
    183190        }
Note: See TracChangeset for help on using the changeset viewer.