Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/String
- Timestamp:
- 06/12/17 14:11:43 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/String
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/String/StringConstantErc.cs
r14952 r15032 12 12 private const string ConstantsParameterName = "Constants"; 13 13 14 public StringConstantErc() : this( false, 1d) { }14 public StringConstantErc() : this(true, 1d) { } 15 15 16 16 public StringConstantErc(params string[] constants) : this(true, 1d, constants) { } -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/String/StringRandomErc.cs
r15017 r15032 27 27 private const string NewStringProbabilityParameterDescription = "The probability that the selection of the ephemeral random string constant for inclusion in randomly generated code will produce a new string (rather than a string that was previously generated)."; 28 28 29 public StringRandomErc() : this( false, 1d) { }29 public StringRandomErc() : this(true, 1d) { } 30 30 31 31 public StringRandomErc(bool isEnabled, double weight = 1d) : base(isEnabled, weight) {
Note: See TracChangeset
for help on using the changeset viewer.