Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/10/11 02:26:55 (13 years ago)
Author:
cneumuel
Message:

#1260

  • added some performance tests for parallel execution and ExecutionTime update intervals
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/ValueConfigurationViews/ValueView.cs

    r5231 r5262  
    4646
    4747    private void setValueButton_Click(object sender, EventArgs e) {
    48       //var typesWithoutNullValue = Content.ValidTypes.Where(x => x != typeof(NullValue));
    49       //var instances = typesWithoutNullValue.Select(x => (IItem)Activator.CreateInstance(x));
    50       //var groupedInstances = instances.GroupBy(x => ApplicationManager.Manager.GetDeclaringPlugin(x.GetType()).Name);
    51       //var objectSelectorDialog = new ObjectSelectorDialog<IItem>(groupedInstances);
    52 
    5348      var withoutNullValue = Content.ValidValues.Where(x => x != null && !(x is NullValue));
    5449      var objectSelectorDialog = new ObjectSelectorDialog<IItem>(withoutNullValue.GroupBy(x => ApplicationManager.Manager.GetDeclaringPlugin(x.GetType()).Name));
Note: See TracChangeset for help on using the changeset viewer.