Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IntegerVector
- Timestamp:
- 05/10/17 11:23:05 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IntegerVector
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IntegerVector/IntegerVectorErcOptions.cs
r14897 r14952 8 8 public class IntegerVectorErcOptions : ErcOption<IReadOnlyList<int>> { 9 9 public IntegerVectorErcOptions() { } 10 public IntegerVectorErcOptions(params IWeightedErcValueItem<IReadOnlyList<int>>[] values) : base(true, values) { }10 public IntegerVectorErcOptions(params WeightedErcItem<IReadOnlyList<int>>[] values) : base(true, values) { } 11 11 12 public IntegerVectorErcOptions(bool isEnabled, params IWeightedErcValueItem<IReadOnlyList<int>>[] values) : base(isEnabled, values) { }12 public IntegerVectorErcOptions(bool isEnabled, params WeightedErcItem<IReadOnlyList<int>>[] values) : base(isEnabled, values) { } 13 13 14 14 [StorableConstructor] … … 20 20 return new IntegerVectorErcOptions(this, cloner); 21 21 } 22 23 public override string ToString() { 24 return "IntegerVector"; 25 } 22 26 } 23 27 }
Note: See TracChangeset
for help on using the changeset viewer.