Changeset 6042 for trunk/sources/HeuristicLab.Problems.VehicleRouting
- Timestamp:
- 04/23/11 00:29:24 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj
r5163 r6042 19 19 </UpgradeBackupLocation> 20 20 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 21 <TargetFrameworkProfile></TargetFrameworkProfile> 21 <TargetFrameworkProfile> 22 </TargetFrameworkProfile> 22 23 <PublishUrl>publish\</PublishUrl> 23 24 <Install>true</Install> … … 111 112 <Compile Include="Analyzers\BestVRPToursMemorizer.cs" /> 112 113 <Compile Include="Analyzers\BestVRPSolutionAnalyzer.cs" /> 114 <Compile Include="Interfaces\IVRPMultiNeighborhoodShakingOperator.cs" /> 115 <Compile Include="ShakingOperators\VehicleRoutingShakingOperator.cs" /> 113 116 <Compile Include="SolutionParser.cs" /> 114 117 <Compile Include="Encodings\Alba\Crossovers\AlbaPermutationCrossover.cs" /> -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs
r5809 r6042 607 607 op.VRPToursParameter.ActualName = SolutionCreator.VRPToursParameter.ActualName; 608 608 } 609 610 foreach (var op in Operators.OfType<IVRPMultiNeighborhoodShakingOperator>()) { 611 op.VRPToursParameter.ActualName = SolutionCreator.VRPToursParameter.ActualName; 612 } 609 613 } 610 614 private void ClearDistanceMatrix() {
Note: See TracChangeset
for help on using the changeset viewer.