- Timestamp:
- 05/28/20 18:03:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorEncoding.cs
r17567 r17571 103 103 bounds[0, 1] = max; 104 104 105 lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)) ;106 boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds) ;105 lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)) { ReadOnly = true }; 106 boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds) { ReadOnly = true }; 107 107 Parameters.Add(lengthParameter); 108 108 Parameters.Add(boundsParameter);
Note: See TracChangeset
for help on using the changeset viewer.