Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/13 14:33:08 (11 years ago)
Author:
jkarder
Message:

#1099:

  • adapted MetaOpt NamedItems once more
    • gave more meaningful names to some items
    • removed unreferenced default ctors
    • changed access modifiers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encoding/ValueConfigurations/RangeValueConfiguration.cs

    r9823 r9827  
    2525    [StorableConstructor]
    2626    protected RangeValueConfiguration(bool deserializing) : base(deserializing) { }
    27     public RangeValueConfiguration()
    28       : base() {
    29       Name = "Range Value Configuration";
    30     }
    3127    protected RangeValueConfiguration(RangeValueConfiguration original, Cloner cloner)
    3228      : base(original, cloner) {
     
    3632    public RangeValueConfiguration(IItem value, Type valueDataType)
    3733      : base(value, valueDataType) {
     34      this.Name = value.ItemName;
    3835      if (actualValue.ValueDataType == typeof(IntValue)) {
    3936        RangeConstraint = new IntValueRange(new IntValue(0), (IntValue)value.Clone(), new IntValue(1));
Note: See TracChangeset for help on using the changeset viewer.