Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Creators/RandomCreator.cs
- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Creators/RandomCreator.cs
r4362 r4752 28 28 using HeuristicLab.Parameters; 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HeuristicLab.Common; 30 31 31 32 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { … … 45 46 : base() { 46 47 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator.")); 48 } 49 50 public override IDeepCloneable Clone(Cloner cloner) { 51 return new RandomCreator(this, cloner); 52 } 53 54 private RandomCreator(RandomCreator original, Cloner cloner) 55 : base(original, cloner) { 47 56 } 48 57
Note: See TracChangeset
for help on using the changeset viewer.