- 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/Creators/AlbaCreator.cs
r4362 r4369 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 using HeuristicLab.Problems.VehicleRouting.Interfaces; 28 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 28 29 29 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { 30 31 [Item("AlbaCreator", "A VRP creator.")] 31 32 [StorableClass] 32 public abstract class AlbaCreator : AlbaOperator, IVRPCreator {33 public abstract class AlbaCreator : VRPCreator, IAlbaOperator, IVRPCreator { 33 34 public override bool CanChangeName { 34 35 get { return false; } 35 }36 37 #region IVRPCreator Members38 public ILookupParameter<IVRPEncoding> VRPToursParameter {39 get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }40 36 } 41 37 … … 45 41 public AlbaCreator() 46 42 : base() { 47 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The new VRP tours."));48 43 } 49 50 #endregion51 44 } 52 45 }
Note: See TracChangeset
for help on using the changeset viewer.