Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/11/15 20:27:00 (9 years ago)
Author:
abeham
Message:

#2427:

  • Added grouping problem sample as Test
  • Added .hl file to Optimizers
  • Adapated StartPage
  • Changed MultiLLEManipulator to enable all manipulators by default
File:
1 edited

Legend:

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

    r12722 r12743  
    6565        using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf"))
    6666          firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
    67       }
    68       catch (Exception) { }
     67      } catch (Exception) { }
    6968
    7069      samplesListView.Enabled = false;
     
    112111
    113112        OnAllSamplesLoaded();
    114       }
    115       finally {
     113      } finally {
    116114        MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView);
    117115      }
     
    126124          OnSampleLoaded(item, group, 1.0 / count);
    127125        }
    128       }
    129       catch (Exception) {
    130       }
    131       finally {
     126      } catch (Exception) {
     127      } finally {
    132128        if (File.Exists(path)) {
    133129          File.Delete(path); // make sure we remove the temporary file
     
    137133
    138134    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",
    140136                "IslandGA_TSP", "LS_Knapsack", "PSO_Schwefel", "RAPGA_JSSP",
    141137                "SA_Rastrigin", "SGP_SantaFe","GP_Multiplexer", "SS_VRP", "TS_TSP", "TS_VRP", "VNS_OP" ,"VNS_TSP"
     
    185181          mainForm.SetWaitCursor();
    186182          mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone());
    187         }
    188         finally {
     183        } finally {
    189184          mainForm.ResetWaitCursor();
    190185        }
Note: See TracChangeset for help on using the changeset viewer.