Changeset 14905 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/FloatVector
- Timestamp:
- 05/02/17 20:42:40 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/FloatVector/FloatVectorConstantsErcValue.cs
r14898 r14905 11 11 12 12 public FloatVectorConstantsErcValue(params double[][] values) 13 : this(true, values) {13 : this(true, 1d, values) { 14 14 } 15 15 16 public FloatVectorConstantsErcValue(bool isEnabled, params double[][] values)17 : base(isEnabled, values.Select(v => new DoubleArray(v)).ToArray()) {16 public FloatVectorConstantsErcValue(bool isEnabled, double weight = 1d, params double[][] values) 17 : base(isEnabled, weight, values.Select(v => new DoubleArray(v)).ToArray()) { 18 18 Name = "Float vector constants"; 19 19 }
Note: See TracChangeset
for help on using the changeset viewer.