Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/20 14:41:43 (4 years ago)
Author:
abeham
Message:

#2521: work in progress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorEncoding.cs

    r17546 r17567  
    4444      set {
    4545        if (Length == value) return;
    46         LengthParameter.ForceValue(new IntValue(value, @readonly: LengthParameter.Value.ReadOnly));
     46        LengthParameter.Value = new IntValue(value, @readonly: LengthParameter.Value.ReadOnly);
    4747      }
    4848    }
     
    107107
    108108    public override void ConfigureOperators(IEnumerable<IItem> operators) {
     109      base.ConfigureOperators(operators);
    109110      ConfigureCreators(operators.OfType<IBinaryVectorCreator>());
    110111      ConfigureCrossovers(operators.OfType<IBinaryVectorCrossover>());
Note: See TracChangeset for help on using the changeset viewer.