Changeset 17716
- Timestamp:
- 08/04/20 13:08:39 (4 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/BasicTourAnalyzer.cs
r17715 r17716 38 38 /// </summary> 39 39 [Item("Basic Tour Analyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [StorableType(" 5DF1280C-5FEB-451E-8132-168E515CF47D")]40 [StorableType("7a135e25-fec8-4960-b412-249c56bb3aab")] 41 41 public sealed class BasicVRPTourAnalyzer : InstrumentedOperator, IAnalyzer, IGeneralVRPOperator { 42 42 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/CapacitatedTourAnalyzer.cs
r17715 r17716 37 37 /// </summary> 38 38 [Item("Capacitated Tour Analyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 39 [StorableType(" 5DF1280C-5FEB-451E-8132-168E515CF47D")]39 [StorableType("72fdaf0a-4ac7-4ac5-a563-3efb0e3fae9e")] 40 40 public sealed class CapacitatedTourAnalyzer : InstrumentedOperator, IAnalyzer, ICapacitatedOperator { 41 41 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/PickupAndDeliveryTourAnalyzer.cs
r17715 r17716 37 37 /// </summary> 38 38 [Item("Pickup & Delivery Tour Analyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 39 [StorableType(" 5DF1280C-5FEB-451E-8132-168E515CF47D")]39 [StorableType("0a108965-fb1a-47a3-a5d4-11d1bfa51b0d")] 40 40 public sealed class PickupAndDeliveryTourAnalyzer : InstrumentedOperator, IAnalyzer, ICapacitatedOperator { 41 41 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/TimeWindowTourAnalyzer.cs
r17715 r17716 37 37 /// </summary> 38 38 [Item("Time Window Tour Analyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 39 [StorableType(" 5DF1280C-5FEB-451E-8132-168E515CF47D")]39 [StorableType("abc472b6-ee21-4b67-8ad9-f82811b2919e")] 40 40 public sealed class TimeWindowTourAnalyzer : InstrumentedOperator, IAnalyzer, ITimeWindowedOperator { 41 41 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/CapacityRelaxationVRPAnalyzer.cs
r17715 r17716 36 36 /// </summary> 37 37 [Item("CapacityRelaxationVRPAnalyzer", "An operator for adaptively relaxing the capacity constraints.")] 38 [StorableType("0 2E519CA-7B71-4BBE-89A5-E630D1FEFC58")]38 [StorableType("0e244bff-3d76-4af1-95b8-4316c25096be")] 39 39 public class CapacityRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, ICapacitatedOperator, ISingleObjectiveOperator { 40 40 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/PickupViolationsRelaxationVRPAnalyzer.cs
r17715 r17716 36 36 /// </summary> 37 37 [Item("PickupViolationsRelaxationVRPAnalyzer", "An operator for adaptively relaxing the pickup constraints.")] 38 [StorableType(" 86D541AB-5E65-432B-A8C4-F012A6B46275")]38 [StorableType("bcf16a7c-5e16-4d96-8b6b-9d5a2ddc0420")] 39 39 public class PickupViolationsRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, IPickupAndDeliveryOperator, ISingleObjectiveOperator { 40 40 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/TimeWindowRelaxationVRPAnalyzer.cs
r17715 r17716 36 36 /// </summary> 37 37 [Item("TimeWindowRelaxationVRPAnalyzer", "An operator for adaptively relaxing the time window constraints.")] 38 [StorableType(" 2CF57A00-547B-46E8-8B55-D626EB2D61DD")]38 [StorableType("e782fe43-c77f-445a-a676-7b03db53ca99")] 39 39 public class TimeWindowRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, ITimeWindowedOperator, ISingleObjectiveOperator { 40 40 [Storable] public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; private set; }
Note: See TracChangeset
for help on using the changeset viewer.