Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/13 16:23:59 (11 years ago)
Author:
ascheibe
Message:

#1886 added repetitions for random parameter configurations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/CreateExperimentMenuItem.cs

    r9361 r9364  
    5454      if ((activeView != null) && (activeView.Content != null) && (activeView.Content is IOptimizer) && !activeView.Locked) {
    5555        using (CreateExperimentDialog dialog = new CreateExperimentDialog((IOptimizer)activeView.Content)) {
    56           if (dialog.ShowDialog() == DialogResult.OK) MainFormManager.MainForm.ShowContent(dialog.Experiment);
     56          if (dialog.ShowDialog() == DialogResult.OK) {
     57            foreach (var exp in dialog.Experiments) {
     58              MainFormManager.MainForm.ShowContent(exp);
     59            }
     60
     61          }
    5762        }
    5863      }
Note: See TracChangeset for help on using the changeset viewer.