Changeset 6046 for branches/histogram/HeuristicLab.Problems.VehicleRouting
- Timestamp:
- 04/23/11 10:00:31 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 4 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
- Property svn:ignore
-
old new 10 10 protoc.exe 11 11 HeuristicLab 3.3.5.1.ReSharper.user 12 *.psess 13 *.vsp
-
- Property svn:mergeinfo changed
/trunk/sources merged: 6026,6029-6031,6035-6037,6042-6045
- Property svn:ignore
-
branches/histogram/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting merged: 6042
- Property svn:mergeinfo changed
-
branches/histogram/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj
r5163 r6046 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" /> -
branches/histogram/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs
r5809 r6046 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.