Changeset 14898 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/FloatVector
- Timestamp:
- 04/28/17 23:33:27 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/FloatVector/FloatVectorConstantsErcValue.cs
r14897 r14898 8 8 [StorableClass] 9 9 public class FloatVectorConstantsErcValue : VectorConstantsErcValue<double, DoubleArray> { 10 public FloatVectorConstantsErcValue() { 11 } 10 public FloatVectorConstantsErcValue() : this(new double[0][]) { } 12 11 13 12 public FloatVectorConstantsErcValue(params double[][] values) … … 17 16 public FloatVectorConstantsErcValue(bool isEnabled, params double[][] values) 18 17 : base(isEnabled, values.Select(v => new DoubleArray(v)).ToArray()) { 18 Name = "Float vector constants"; 19 19 } 20 20
Note: See TracChangeset
for help on using the changeset viewer.