Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/10 11:34:13 (14 years ago)
Author:
cneumuel
Message:

#1215

  • enabled multiple problems
  • enabled n repetitions
  • improved results output
  • reduced memory footprint significantly
  • removed viewhost icons for less screen space waste
File:
1 edited

Legend:

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

    r4997 r5087  
    5353                Content.ActualValue.ValueDataType == typeof(DoubleValue) ||
    5454                Content.ActualValue.ValueDataType == typeof(PercentValue)) {
     55              this.viewHost.ViewsLabelVisible = true;
    5556              this.viewHost.Content = ((IValueConfiguration)Content).RangeConstraint;
    5657            } else if(Content.ActualValue.ValueDataType == typeof(BoolValue)) {
    5758              this.viewHost.Content = null; // no configuration required
    5859            } else {
     60              this.viewHost.ViewsLabelVisible = false;
    5961              this.viewHost.Content = ((IValueConfiguration)Content).ParameterConfigurations;
    6062            }
     
    6365          }
    6466        } else {
     67          this.viewHost.ViewsLabelVisible = false;
    6568          this.viewHost.Content = Content.ActualValue;
    6669        }
    6770      }
     71      SetEnabledStateOfControls();
    6872    }
    6973    void Content_IsOptimizabeChanged(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.