Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/IterativeInsertionCreator.cs
r13368 r14711 34 34 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { 35 35 [Item("IterativeInsertionCreator", "Creates a randomly initialized VRP solution.")] 36 [Storable Class("7CF1211C-160C-4F49-AD88-1CC0DE056242")]36 [StorableType("7CF1211C-160C-4F49-AD88-1CC0DE056242")] 37 37 public sealed class IterativeInsertionCreator : PotvinCreator, IStochasticOperator { 38 38 #region IStochasticOperator Members -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/PotvinCreator.cs
r13368 r14711 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { 29 29 [Item("PotvinCreator", "A VRP creator.")] 30 [Storable Class("EE1193D8-6578-49D0-BFC0-32FED5891832")]30 [StorableType("EE1193D8-6578-49D0-BFC0-32FED5891832")] 31 31 public abstract class PotvinCreator : VRPCreator, IPotvinOperator, IVRPCreator { 32 32 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/PushForwardInsertionCreator.cs
r13368 r14711 34 34 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { 35 35 [Item("PushForwardInsertionCreator", "The push forward insertion heuristic. It is implemented as described in Sam, and Thangiah, R. (1999). A Hybrid Genetic Algorithms, Simulated Annealing and Tabu Search Heuristic for Vehicle Routing Problems with Time Windows. Practical Handbook of Genetic Algorithms, Volume III, pp 347â381.")] 36 [Storable Class("1BE58C12-0919-4251-B1ED-C78D8B29D507")]36 [StorableType("1BE58C12-0919-4251-B1ED-C78D8B29D507")] 37 37 public sealed class PushForwardInsertionCreator : PotvinCreator, IStochasticOperator { 38 38 #region IStochasticOperator Members
Note: See TracChangeset
for help on using the changeset viewer.