Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17715


Ignore:
Timestamp:
08/04/20 12:59:49 (4 years ago)
Author:
abeham
Message:

#2521: working on VRP (analyzers)

Location:
branches/2521_ProblemRefactoring
Files:
16 added
12 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Results/ResultParameter.cs

    r17594 r17715  
    8686      Hidden = false;
    8787    }
     88    public ResultParameter(string name, string description, T defaultValue) : this(name, description, "Results", defaultValue) { }
    8889    public ResultParameter(string name, string description, string resultCollectionName, T defaultValue)
    8990      : base(name, description, string.Empty) {
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLab.Problems.VehicleRouting-3.4.csproj

    r17714 r17715  
    115115  </ItemGroup>
    116116  <ItemGroup>
    117     <Compile Include="Analyzer\BestAverageWorstTours\BestAverageWorstVRPToursAnalyzer.cs" />
    118     <Compile Include="Analyzer\BestAverageWorstTours\BestAverageWorstVRPToursCalculator.cs" />
    119     <Compile Include="Analyzer\BestAverageWorstTours\BestVRPToursMemorizer.cs" />
    120     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestAverageWorstCapacitatedVRPToursAnalyzer.cs" />
    121     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestAverageWorstCapacitatedVRPToursCalculator.cs" />
    122     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestCapacitatedVRPToursMemorizer.cs" />
    123     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestAverageWorstPickupAndDeliveryVRPToursAnalyzer.cs" />
    124     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestAverageWorstPickupAndDeliveryVRPToursCalculator.cs" />
    125     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestPickupAndDeliveryVRPToursMemorizer.cs" />
    126     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestAverageWorstTimeWindowedVRPToursAnalyzer.cs" />
    127     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestAverageWorstTimeWindowedVRPToursCalculator.cs" />
    128     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestTimeWindowedVRPToursMemorizer.cs" />
    129     <Compile Include="Analyzer\BestSolution\BestVRPSolutionAnalyzer.cs" />
    130     <Compile Include="Analyzer\ConstraintRelaxation\Capacitated\CapacityRelaxationVRPAnalyzer.cs" />
    131     <Compile Include="Analyzer\ConstraintRelaxation\PickupAndDelivery\PickupViolationsRelaxationVRPAnalyzer.cs" />
    132     <Compile Include="Analyzer\ConstraintRelaxation\TimeWindowed\TimeWindowRelaxationVRPAnalyzer.cs" />
     117    <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDeliveryTourAnalyzer.cs" />
     118    <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowTourAnalyzer.cs" />
     119    <Compile Include="Analyzer\BestAverageWorstTours\CapacitatedTourAnalyzer.cs" />
     120    <Compile Include="Analyzer\BestAverageWorstTours\BasicTourAnalyzer.cs" />
     121    <Compile Include="Analyzer\ConstraintRelaxation\CapacityRelaxationVRPAnalyzer.cs" />
     122    <Compile Include="Analyzer\ConstraintRelaxation\PickupViolationsRelaxationVRPAnalyzer.cs" />
     123    <Compile Include="Analyzer\ConstraintRelaxation\TimeWindowRelaxationVRPAnalyzer.cs" />
    133124    <Compile Include="Analyzer\VRPSolution.cs" />
    134125    <Compile Include="Encodings\MultiVRPEncoding.cs" />
     
    341332    <Compile Include="Interfaces\IVRPProblemInstance.cs" />
    342333    <Compile Include="Plugin.cs" />
    343     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPProblemInstance.cs" />
    344     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPPDTW\MDCVRPPDTWProblemInstance.cs" />
    345     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPTWProblemInstance.cs" />
     334    <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRPProblemInstance.cs" />
     335    <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRPPDTWProblemInstance.cs" />
     336    <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRPTWProblemInstance.cs" />
    346337    <Compile Include="ProblemInstances\MultiDepotVRP\MultiDepotVRPProblemInstance.cs" />
    347     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPPDTW\CVRPPDTWProblemInstance.cs" />
    348     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPPDTW\CVRPPDTWEvaluation.cs" />
     338    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPPDTWProblemInstance.cs" />
     339    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPPDTWEvaluation.cs" />
    349340    <Compile Include="SimilarityCalculators\VRPSimilarityCalculator.cs" />
    350341    <Compile Include="SolutionParser.cs" />
     
    364355    <Compile Include="Variants\TimeWindowed\ITimeWindowedProblemInstance.cs" />
    365356    <Compile Include="Variants\TimeWindowed\ITimeWindowedOperator.cs" />
    366     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWProblemInstance.cs" />
    367     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPProblemInstance.cs" />
    368     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWEvaluation.cs" />
    369     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPEvaluation.cs" />
     357    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPTWProblemInstance.cs" />
     358    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPProblemInstance.cs" />
     359    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPTWEvaluation.cs" />
     360    <Compile Include="ProblemInstances\SingleDepotVRP\CVRPEvaluation.cs" />
    370361    <Compile Include="ProblemInstances\VRPEvaluation.cs" />
    371362    <Compile Include="ProblemInstances\SingleDepotVRP\SingleDepotVRPProblemInstance.cs" />
Note: See TracChangeset for help on using the changeset viewer.