Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Char
- Timestamp:
- 05/10/17 11:23:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Char/CharErcOptions.cs
r14905 r14952 10 10 public CharErcOptions() { } 11 11 12 public CharErcOptions(params IWeightedErcValueItem<int>[] values) : this(true, values) { }12 public CharErcOptions(params WeightedErcItem<int>[] values) : this(true, values) { } 13 13 14 public CharErcOptions(bool isEnabled, params IWeightedErcValueItem<int>[] values) : base(isEnabled, values) { }14 public CharErcOptions(bool isEnabled, params WeightedErcItem<int>[] values) : base(isEnabled, values) { } 15 15 16 16 [StorableConstructor] … … 26 26 return GetErcValue(random, Convert.ToChar); 27 27 } 28 29 public override string ToString() { 30 return "Char"; 31 } 28 32 } 29 33 }
Note: See TracChangeset
for help on using the changeset viewer.