- Timestamp:
- 09/03/10 11:15:22 (14 years ago)
- Location:
- branches/VRP
- Files:
-
- 5 added
- 2 deleted
- 22 edited
- 6 copied
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/HeuristicLabProblemsVehicleRoutingViewsPlugin.cs
r4362 r4363 26 26 /// Plugin class for HeuristicLab.Problems.VehicleRouting.Views plugin 27 27 /// </summary> 28 [Plugin("HeuristicLab.Problems.VehicleRouting.Views", "3.4.0.436 1")]28 [Plugin("HeuristicLab.Problems.VehicleRouting.Views", "3.4.0.4362")] 29 29 [PluginFile("HeuristicLab.Problems.VehicleRouting.Views-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/AlbaOperator.cs
r4362 r4363 29 29 using HeuristicLab.Parameters; 30 30 using HeuristicLab.Operators; 31 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;31 using HeuristicLab.Problems.VehicleRouting.Variants; 32 32 33 33 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Creators/DefaultRepresentationCreator.cs
r4362 r4363 27 27 using System.Collections.Generic; 28 28 using HeuristicLab.Problems.VehicleRouting.Encodings; 29 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;29 using HeuristicLab.Problems.VehicleRouting.Variants; 30 30 31 31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Tour.cs
r4362 r4363 28 28 using HeuristicLab.Core; 29 29 30 namespace HeuristicLab.Problems.VehicleRouting .DomainModel{30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [StorableClass] 32 32 public class Tour : Item { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/VRPEncoding.cs
r4362 r4363 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 28 using HeuristicLab.Core; 29 using HeuristicLab.Problems.VehicleRouting.DomainModel;30 29 31 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings { … … 38 37 protected VRPEncoding(bool deserializing) : base(deserializing) { } 39 38 40 39 public VRPEncoding() 41 40 : base() { 42 41 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLab.Problems.VehicleRouting-3.4.csproj
r4362 r4363 117 117 <Compile Include="Interfaces\IVRPEncoding.cs" /> 118 118 <Compile Include="Interfaces\IVRPProblemInstance.cs" /> 119 <Compile Include=" Interfaces\Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedProblemInstance.cs" />120 <Compile Include=" Interfaces\Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedOperator.cs" />121 <Compile Include=" Interfaces\Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedEncoding.cs" />122 <Compile Include=" Interfaces\Variants\Capacitated\Homogenous\ICapacitatedEncoding.cs" />123 <Compile Include=" Interfaces\Variants\Capacitated\Homogenous\ICapacitatedOperator.cs" />124 <Compile Include=" Interfaces\Variants\Capacitated\Homogenous\ICapacitatedProblemInstance.cs" />125 <Compile Include=" Interfaces\Variants\SingleDepot\ISingleDepotOperator.cs" />126 <Compile Include=" Interfaces\Variants\SingleDepot\ISingleDepotEncoding.cs" />127 <Compile Include=" Interfaces\Variants\SingleDepot\ISingleDepotProblemInstance.cs" />128 <Compile Include=" Interfaces\Variants\TimeWindowed\ITimeWindowedProblemInstance.cs" />129 <Compile Include=" Interfaces\Variants\TimeWindowed\ITimeWindowedOperator.cs" />130 <Compile Include=" Interfaces\Variants\TimeWindowed\ITimeWindowedEncoding.cs" />119 <Compile Include="Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedProblemInstance.cs" /> 120 <Compile Include="Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedOperator.cs" /> 121 <Compile Include="Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedEncoding.cs" /> 122 <Compile Include="Variants\Capacitated\Homogenous\ICapacitatedEncoding.cs" /> 123 <Compile Include="Variants\Capacitated\Homogenous\ICapacitatedOperator.cs" /> 124 <Compile Include="Variants\Capacitated\Homogenous\ICapacitatedProblemInstance.cs" /> 125 <Compile Include="Variants\SingleDepot\ISingleDepotOperator.cs" /> 126 <Compile Include="Variants\SingleDepot\ISingleDepotEncoding.cs" /> 127 <Compile Include="Variants\SingleDepot\ISingleDepotProblemInstance.cs" /> 128 <Compile Include="Variants\TimeWindowed\ITimeWindowedProblemInstance.cs" /> 129 <Compile Include="Variants\TimeWindowed\ITimeWindowedOperator.cs" /> 130 <Compile Include="Variants\TimeWindowed\ITimeWindowedEncoding.cs" /> 131 131 <Compile Include="Parsers\ORLIBParser.cs" /> 132 <Compile Include="ProblemInstances\CVRPTWProblemInstance.cs" /> 133 <Compile Include="ProblemInstances\CVRPProblemInstance.cs" /> 134 <Compile Include="ProblemInstances\Evaluation\CVRPTWEvaluation.cs" /> 135 <Compile Include="ProblemInstances\Evaluation\CVRPEvaluation.cs" /> 136 <Compile Include="ProblemInstances\Evaluation\Evaluators\SingleDepotVRPEvaluator.cs" /> 137 <Compile Include="ProblemInstances\Evaluation\Evaluators\VRPEvaluator.cs" /> 138 <Compile Include="ProblemInstances\Evaluation\VRPEvaluation.cs" /> 139 <Compile Include="ProblemInstances\SingleDepotVRPProblemInstance.cs" /> 132 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWProblemInstance.cs" /> 133 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPProblemInstance.cs" /> 134 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWEvaluation.cs" /> 135 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPEvaluation.cs" /> 136 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWEvaluator.cs" /> 137 <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPEvaluator.cs" /> 138 <Compile Include="ProblemInstances\SingleDepotVRP\SingleDepotVRPEvaluator.cs" /> 139 <Compile Include="ProblemInstances\VRPEvaluator.cs" /> 140 <Compile Include="ProblemInstances\VRPEvaluation.cs" /> 141 <Compile Include="ProblemInstances\SingleDepotVRP\SingleDepotVRPProblemInstance.cs" /> 140 142 <Compile Include="ProblemInstances\VRPProblemInstance.cs" /> 141 <Compile Include=" DomainModel\Tour.cs" />143 <Compile Include="Encodings\Tour.cs" /> 142 144 <Compile Include="Parsers\TSPLIBParser.cs" /> 143 145 <Compile Include="HeuristicLabProblemsVehicleRoutingPlugin.cs" /> … … 222 224 </BootstrapperPackage> 223 225 </ItemGroup> 224 <ItemGroup> 225 <Folder Include="ProblemInstances\Evaluation\MoveEvaluators\" /> 226 </ItemGroup> 226 <ItemGroup /> 227 227 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 228 228 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLabProblemsVehicleRoutingPlugin.cs
r4362 r4363 26 26 /// Plugin class for HeuristicLab.Problems.VehicleRouting plugin 27 27 /// </summary> 28 [Plugin("HeuristicLab.Problems.VehicleRouting", "3.4.0.436 1")]28 [Plugin("HeuristicLab.Problems.VehicleRouting", "3.4.0.4362")] 29 29 [PluginFile("HeuristicLab.Problems.VehicleRouting-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEncoding.cs
r4362 r4363 25 25 using System.Text; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Problems.VehicleRouting.DomainModel;28 27 29 28 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs
r4362 r4363 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using HeuristicLab.Problems.VehicleRouting.DomainModel;29 28 30 29 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPProblemInstance.cs
r4362 r4363 27 27 using HeuristicLab.Core; 28 28 using HeuristicLab.Data; 29 using HeuristicLab.Problems.VehicleRouting.DomainModel;30 29 31 30 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluation.cs
r4362 r4363 4 4 using System.Text; 5 5 6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances .Evaluation{6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 7 7 public class CVRPEvaluation: VRPEvaluation { 8 8 public double Overload { get; set; } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { … … 37 37 [StorableClass] 38 38 public class CVRPProblemInstance: SingleDepotVRPProblemInstance, ICapacitatedProblemInstance { 39 protected ValueParameter<DoubleValue> CapacityParameter {40 get { return ( ValueParameter<DoubleValue>)Parameters["Capacity"]; }39 protected IValueParameter<DoubleValue> CapacityParameter { 40 get { return (IValueParameter<DoubleValue>)Parameters["Capacity"]; } 41 41 } 42 p ublicIValueParameter<DoubleValue> OverloadPenaltyParameter {42 protected IValueParameter<DoubleValue> OverloadPenaltyParameter { 43 43 get { return (IValueParameter<DoubleValue>)Parameters["EvalOverloadPenalty"]; } 44 44 } … … 59 59 } 60 60 } 61 62 protected override IVRPEvaluator Evaluator { 63 get { 64 return new CVRPEvaluator(); 65 } 66 } 61 67 62 68 [StorableConstructor] -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluation.cs
r4362 r4363 4 4 using System.Text; 5 5 6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances .Evaluation{6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 7 7 public class CVRPTWEvaluation: CVRPEvaluation { 8 8 public double Tardiness { get; set; } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { … … 37 37 [StorableClass] 38 38 public class CVRPTWProblemInstance: CVRPProblemInstance, ITimeWindowedProblemInstance { 39 protected ValueParameter<DoubleArray> ReadyTimeParameter {40 get { return ( ValueParameter<DoubleArray>)Parameters["ReadyTime"]; }39 protected IValueParameter<DoubleArray> ReadyTimeParameter { 40 get { return (IValueParameter<DoubleArray>)Parameters["ReadyTime"]; } 41 41 } 42 protected ValueParameter<DoubleArray> DueTimeParameter {43 get { return ( ValueParameter<DoubleArray>)Parameters["DueTime"]; }42 protected IValueParameter<DoubleArray> DueTimeParameter { 43 get { return (IValueParameter<DoubleArray>)Parameters["DueTime"]; } 44 44 } 45 protected ValueParameter<DoubleArray> ServiceTimeParameter {46 get { return ( ValueParameter<DoubleArray>)Parameters["ServiceTime"]; }45 protected IValueParameter<DoubleArray> ServiceTimeParameter { 46 get { return (IValueParameter<DoubleArray>)Parameters["ServiceTime"]; } 47 47 } 48 48 … … 81 81 } 82 82 } 83 84 protected override IVRPEvaluator Evaluator { 85 get { 86 return new CVRPTWEvaluator(); 87 } 88 } 83 89 84 90 [StorableConstructor] -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPEvaluator.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 using HeuristicLab.Problems.VehicleRouting.Encodings; 35 using HeuristicLab.Problems.VehicleRouting.DomainModel;36 35 37 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances.Evaluation { 36 37 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 38 38 [Item("SingleDepotVRPEvaluator", "Represents a single depot VRP evaluator.")] 39 39 [StorableClass] 40 40 public class SingleDepotVRPEvaluator: VRPEvaluator { 41 41 protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour) { 42 double distance = 0.0; 43 double quality = 0.0; 42 44 45 //simulate a tour, start and end at depot 46 for (int i = 0; i <= tour.Stops.Count; i++) { 47 int start = 0; 48 if (i > 0) 49 start = tour.Stops[i - 1]; 50 int end = 0; 51 if (i < tour.Stops.Count) 52 end = tour.Stops[i]; 53 54 //drive there 55 double currentDistace = instance.GetDistance(start, end); 56 distance += currentDistace; 57 } 58 59 //Fleet usage 60 quality += instance.FleetUsageFactor.Value; 61 //Distance 62 quality += instance.DistanceFactor.Value * distance; 63 64 eval.Distance = distance; 65 eval.VehicleUtilization = 1; 66 67 eval.Quality = quality; 43 68 } 44 69 -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPProblemInstance.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting.Interfaces.Variants; 34 using HeuristicLab.Problems.VehicleRouting.ProblemInstances.Evaluation; 33 using HeuristicLab.Problems.VehicleRouting.Variants; 35 34 36 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluation.cs
r4362 r4363 4 4 using System.Text; 5 5 6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances .Evaluation{6 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 7 7 public class VRPEvaluation { 8 8 public double Quality { get; set; } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;33 using HeuristicLab.Problems.VehicleRouting.Variants; 34 34 using HeuristicLab.Problems.VehicleRouting.Encodings; 35 using HeuristicLab.Problems.VehicleRouting.DomainModel;36 35 37 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances .Evaluation{36 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 38 37 [Item("VRPEvaluator", "Represents a VRP evaluator.")] 39 38 [StorableClass] … … 44 43 45 44 #region ISingleObjectiveEvaluator Members 46 47 45 public ILookupParameter<DoubleValue> QualityParameter { 48 46 get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; } 49 47 } 48 #endregion 50 49 51 50 public ILookupParameter<DoubleValue> DistanceParameter { … … 55 54 get { return (ILookupParameter<DoubleValue>)Parameters["VehiclesUtilized"]; } 56 55 } 57 58 public ILookupParameter<DoubleValue> FleetUsageFactor {59 get { return (ILookupParameter<DoubleValue>)Parameters["EvalFleetUsageFactor"]; }60 }61 public ILookupParameter<DoubleValue> DistanceFactor {62 get { return (ILookupParameter<DoubleValue>)Parameters["EvalDistanceFactor"]; }63 }64 65 #endregion66 56 67 57 [StorableConstructor] … … 70 60 public VRPEvaluator() { 71 61 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated.")); 72 73 Parameters.Add(new LookupParameter<DoubleValue>("EvalFleetUsageFactor", "The fleet usage factor considered in the evaluation."));74 Parameters.Add(new LookupParameter<DoubleValue>("EvalDistanceFactor", "The distance factor considered in the evaluation."));75 62 76 63 Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The evaluated quality of the VRP solution.")); … … 85 72 protected abstract void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour); 86 73 87 protected VRPEvaluation EvaluateTour(IVRPProblemInstance instance, Tour tour) {88 VRPEvaluation evaluation = CreateTourEvaluation();89 EvaluateTour(evaluation, instance, tour);90 return evaluation;91 }92 93 74 protected virtual void InitResultParameters() { 94 75 QualityParameter.ActualValue = new DoubleValue(0); … … 101 82 VehcilesUtilizedParameter.ActualValue.Value += tourEvaluation.VehicleUtilization; 102 83 DistanceParameter.ActualValue.Value += tourEvaluation.Distance; 84 } 85 86 protected VRPEvaluation EvaluateTour(IVRPProblemInstance instance, Tour tour) { 87 VRPEvaluation evaluation = CreateTourEvaluation(); 88 EvaluateTour(evaluation, instance, tour); 89 return evaluation; 103 90 } 104 91 -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs
r4362 r4363 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Problems.VehicleRouting.DomainModel;34 33 35 34 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedEncoding.cs
r4362 r4363 25 25 using System.Text; 26 26 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {27 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 28 public interface IHeterogenousCapacitatedEncoding: ICapacitatedEncoding { 29 29 List<int> GetVehicleAssignment(); -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedOperator.cs
r4362 r4363 25 25 using System.Text; 26 26 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {27 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 28 public interface IHeterogenousCapacitatedOperator: ICapacitatedOperator { 29 29 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedProblemInstance.cs
r4362 r4363 25 25 using System.Text; 26 26 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {27 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 28 public interface IHeterogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 29 29 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/ICapacitatedEncoding.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ICapacitatedEncoding: IVRPEncoding { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/ICapacitatedOperator.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ICapacitatedOperator: IVRPOperator { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/ICapacitatedProblemInstance.cs
r4362 r4363 25 25 using System.Text; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 28 28 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {29 namespace HeuristicLab.Problems.VehicleRouting.Variants { 29 30 public interface ICapacitatedProblemInstance: IVRPProblemInstance { 30 31 DoubleValue Capacity { get; } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/SingleDepot/ISingleDepotEncoding.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ISingleDepotEncoding: IVRPEncoding { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/SingleDepot/ISingleDepotOperator.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ISingleDepotOperator: IVRPOperator { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/SingleDepot/ISingleDepotProblemInstance.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ISingleDepotProblemInstance: IVRPProblemInstance { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedEncoding.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ITimeWindowedEncoding: IVRPEncoding { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedOperator.cs
r4362 r4363 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 27 27 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface ITimeWindowedOperator: IVRPOperator { 29 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedProblemInstance.cs
r4362 r4363 25 25 using System.Text; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 28 28 namespace HeuristicLab.Problems.VehicleRouting. Interfaces.Variants {29 namespace HeuristicLab.Problems.VehicleRouting.Variants { 29 30 public interface ITimeWindowedProblemInstance: IVRPProblemInstance { 30 31 DoubleArray ReadyTime { get; }
Note: See TracChangeset
for help on using the changeset viewer.