Changeset 12747 for stable/HeuristicLab.Optimizer
- Timestamp:
- 07/12/15 16:00:20 (9 years ago)
- Location:
- stable
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12743
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimizer merged: 12743
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r12742 r12747 146 146 <EmbeddedResource Include="Documents\GridSearch_SVM_Regression_Script.hl" /> 147 147 <EmbeddedResource Include="Documents\VNS_OP.hl" /> 148 <EmbeddedResource Include="Documents\GA_Grouping.hl" /> 148 149 <None Include="Plugin.cs.frame" /> 149 150 <Compile Include="OptimizerSingleDocumentMainForm.cs"> -
stable/HeuristicLab.Optimizer/3.3/StartPage.cs
r12742 r12747 65 65 using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf")) 66 66 firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText); 67 } 68 catch (Exception) { } 67 } catch (Exception) { } 69 68 70 69 samplesListView.Enabled = false; … … 112 111 113 112 OnAllSamplesLoaded(); 114 } 115 finally { 113 } finally { 116 114 MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView); 117 115 } … … 126 124 OnSampleLoaded(item, group, 1.0 / count); 127 125 } 128 } 129 catch (Exception) { 130 } 131 finally { 126 } catch (Exception) { 127 } finally { 132 128 if (File.Exists(path)) { 133 129 File.Delete(path); // make sure we remove the temporary file … … 137 133 138 134 private void FillGroupLookup() { 139 var standardProblems = new List<string> { "ES_Griewank", "GA_ TSP", "GA_VRP", "GE_ArtificialAnt",135 var standardProblems = new List<string> { "ES_Griewank", "GA_Grouping", "GA_TSP", "GA_VRP", "GE_ArtificialAnt", 140 136 "IslandGA_TSP", "LS_Knapsack", "PSO_Schwefel", "RAPGA_JSSP", 141 137 "SA_Rastrigin", "SGP_SantaFe","GP_Multiplexer", "SS_VRP", "TS_TSP", "TS_VRP", "VNS_OP" ,"VNS_TSP" … … 185 181 mainForm.SetWaitCursor(); 186 182 mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone()); 187 } 188 finally { 183 } finally { 189 184 mainForm.ResetWaitCursor(); 190 185 }
Note: See TracChangeset
for help on using the changeset viewer.