Changeset 13190
Legend:
- Unmodified
- Added
- Removed
-
stable/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorEncoding.cs
r12009 r13190 130 130 } 131 131 132 LengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 133 BoundsParameter = new ValueParameter<IntMatrix>(Name + ".Bounds", bounds); 132 lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 133 boundsParameter = new ValueParameter<IntMatrix>(Name + ".Bounds", bounds); 134 Parameters.Add(lengthParameter); 135 Parameters.Add(boundsParameter); 134 136 135 137 SolutionCreator = new UniformRandomIntegerVectorCreator(); -
stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorEncoding.cs
r12009 r13190 124 124 bounds[i, 1] = max[i]; 125 125 } 126 LengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 127 BoundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds); 126 lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 127 boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds); 128 Parameters.Add(lengthParameter); 129 Parameters.Add(boundsParameter); 128 130 129 131 SolutionCreator = new UniformRandomRealVectorCreator();
Note: See TracChangeset
for help on using the changeset viewer.