Changeset 4369 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Manipulators
- Timestamp:
- 09/07/10 17:24:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Manipulators/AlbaManipulator.cs
r4365 r4369 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 29 30 30 31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 31 32 [Item("AlbaManipulator", "An operator which manipulates a VRP representation.")] 32 33 [StorableClass] 33 public abstract class AlbaManipulator : AlbaOperator, IVRPManipulator, IStochasticOperator {34 public abstract class AlbaManipulator : VRPManipulator, IAlbaOperator, IVRPManipulator, IStochasticOperator { 34 35 public ILookupParameter<IRandom> RandomParameter { 35 36 get { return (LookupParameter<IRandom>)Parameters["Random"]; } 36 }37 38 public ILookupParameter<IVRPEncoding> VRPToursParameter {39 get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }40 37 } 41 38 … … 46 43 : base() { 47 44 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators.")); 48 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours to be manipulated."));49 45 } 50 46
Note: See TracChangeset
for help on using the changeset viewer.