Changeset 16477 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants
- Timestamp:
- 01/02/19 10:02:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedOperator.cs
r16453 r16477 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [StorableType("D9F4AD37-6D17-4376-874C-5773BFDE9A77")] 24 26 public interface IHeterogenousCapacitatedOperator : IHomogenousCapacitatedOperator { 25 27 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedProblemInstance.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Data; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("94A5B1EF-6C46-402B-B31A-76BB19745A52")] 25 27 public interface IHeterogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 28 DoubleArray Capacity { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedOperator.cs
r16453 r16477 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [StorableType("0827648C-B4EF-450C-86BE-B145624FCC6C")] 24 26 public interface IHomogenousCapacitatedOperator : ICapacitatedOperator { 25 27 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedProblemInstance.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Data; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("F789C488-BD06-40C2-A75C-C1FFE0361B77")] 25 27 public interface IHomogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 28 DoubleValue Capacity { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("3439CF1A-DDE5-4E67-A6B3-8B6A2C640637")] 25 27 public interface ICapacitatedOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r16453 r16477 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Variants { 27 [StorableType("C172524A-C4B2-49DA-AC95-6619CB51544B")] 26 28 public interface ICapacitatedProblemInstance : IVRPProblemInstance { 27 29 DoubleValue OverloadPenalty { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/General/IGeneralVRPOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("08484417-9E4E-4104-AAFD-4197046A5CAC")] 25 27 public interface IGeneralVRPOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/MultiDepot/IMultiDepotOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("58F40290-ACB2-4E19-8064-2944EAD9BE0A")] 25 27 public interface IMultiDepotOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/MultiDepot/IMultiDepotProblemInstance.cs
r16453 r16477 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Variants { 27 [StorableType("C6DA8FFB-DBA2-431B-A8C2-B685EB76D3F3")] 26 28 public interface IMultiDepotProblemInstance : IVRPProblemInstance { 27 29 IntValue Depots { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/PickupAndDelivery/IPickupAndDeliveryOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("D2F69F8C-357D-4EC7-AC78-EE04324A27C6")] 25 27 public interface IPickupAndDeliveryOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/PickupAndDelivery/IPickupAndDeliveryProblemInstance.cs
r16453 r16477 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Variants { 27 [StorableType("A55869C3-00D4-481B-BBC8-201C510934AA")] 26 28 public interface IPickupAndDeliveryProblemInstance : IVRPProblemInstance { 27 29 IntArray PickupDeliveryLocation { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/SingleDepot/ISingleDepotOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("575729DA-15DA-4979-B8B5-F6878FE7FAE7")] 25 27 public interface ISingleDepotOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/SingleDepot/ISingleDepotProblemInstance.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("F4038025-9294-466D-A60D-45E7F98F9186")] 25 27 public interface ISingleDepotProblemInstance : IVRPProblemInstance { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedOperator.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("43A35B3E-B3F4-4A16-9940-CFDA9E288F78")] 25 27 public interface ITimeWindowedOperator : IVRPOperator { 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedProblemInstance.cs
r16453 r16477 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Variants { 27 [StorableType("5E6207F9-10E5-4428-BC6E-C583389F9D86")] 26 28 public interface ITimeWindowedProblemInstance : IVRPProblemInstance { 27 29 DoubleArray ReadyTime { get; }
Note: See TracChangeset
for help on using the changeset viewer.