Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Float
- Timestamp:
- 06/12/17 14:11:43 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Float
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Float/FloatConstantErc.cs
r14952 r15032 7 7 public class FloatConstantErc : ConstantsWeightedErc<double, DoubleArray> { 8 8 9 public FloatConstantErc() : this( false, 1d) { }9 public FloatConstantErc() : this(true, 1d) { } 10 10 11 11 public FloatConstantErc(params double[] constants) : this(true, 1d, constants) { } -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Float/FloatRangeErc.cs
r14952 r15032 10 10 private const string RangeParameterName = "Range"; 11 11 12 public FloatRangeErc() : this( false, 0d, 0d) { }12 public FloatRangeErc() : this(true, 0d, 0d) { } 13 13 14 14 public FloatRangeErc(double start, double end) : this(true, start, end) { }
Note: See TracChangeset
for help on using the changeset viewer.