Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/30/10 01:08:19 (13 years ago)
Author:
cneumuel
Message:

#1215 worked on metaoptimization

Location:
branches/HeuristicLab.MetaOptimization
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization

    • Property svn:ignore
      •  

        old new  
        11HeuristicLab.MetaOptimization.suo
        22HeuristicLab.MetaOptimization.Test
         3HeuristicLab.MetaOptimization.Tests
         4TestResults
         5HeuristicLab.MetaOptimization.vsmdi
         6Local.testsettings
         7TraceAndTestImpact.testsettings
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/OptimizableView.cs

    r4984 r4997  
    5050            this.viewHost.Content = ((IParameterConfiguration)Content).ValueConfigurations;
    5151          } else if (Content is IValueConfiguration) {
    52             if (Content.ConstrainedValue.ValueDataType == typeof(IntValue) ||
    53                 Content.ConstrainedValue.ValueDataType == typeof(DoubleValue) ||
    54                 Content.ConstrainedValue.ValueDataType == typeof(PercentValue)) {
     52            if (Content.ActualValue.ValueDataType == typeof(IntValue) ||
     53                Content.ActualValue.ValueDataType == typeof(DoubleValue) ||
     54                Content.ActualValue.ValueDataType == typeof(PercentValue)) {
    5555              this.viewHost.Content = ((IValueConfiguration)Content).RangeConstraint;
    56             } else if(Content.ConstrainedValue.ValueDataType == typeof(BoolValue)) {
     56            } else if(Content.ActualValue.ValueDataType == typeof(BoolValue)) {
    5757              this.viewHost.Content = null; // no configuration required
    5858            } else {
     
    6363          }
    6464        } else {
    65           this.viewHost.Content = Content.ConstrainedValue;
     65          this.viewHost.Content = Content.ActualValue;
    6666        }
    6767      }
Note: See TracChangeset for help on using the changeset viewer.