Changeset 3048 for trunk/sources/HeuristicLab.Encodings.Permutation/3.3/Creators/RandomPermutationCreator.cs
- Timestamp:
- 03/15/10 23:49:54 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.Permutation/3.3/Creators/RandomPermutationCreator.cs
r3034 r3048 42 42 get { return (LookupParameter<IRandom>)Parameters["Random"]; } 43 43 } 44 public IValueLookupParameter<Int Data> LengthParameter {45 get { return (IValueLookupParameter<Int Data>)Parameters["Length"]; }44 public IValueLookupParameter<IntValue> LengthParameter { 45 get { return (IValueLookupParameter<IntValue>)Parameters["Length"]; } 46 46 } 47 47 public ILookupParameter<Permutation> PermutationParameter { … … 52 52 : base() { 53 53 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used to initialize the new random permutation.")); 54 Parameters.Add(new ValueLookupParameter<Int Data>("Length", "The length of the new random permutation."));54 Parameters.Add(new ValueLookupParameter<IntValue>("Length", "The length of the new random permutation.")); 55 55 Parameters.Add(new LookupParameter<Permutation>("Permutation", "The new random permutation.")); 56 56 }
Note: See TracChangeset
for help on using the changeset viewer.