- Timestamp:
- 08/10/10 10:06:14 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3
- Files:
-
- 4 added
- 2 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/VRPManipulator.cs
r4179 r4183 43 43 public VRPManipulator() 44 44 : base() { 45 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The new VRP tours."));45 Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The VRP tours to be manipulated.")); 46 46 } 47 47 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj
r4179 r4183 107 107 <ItemGroup> 108 108 <Compile Include="Analyzers\BestVRPSolutionAnalyzer.cs" /> 109 <Compile Include="Encodings\General\RandomCreator.cs" /> 109 <Compile Include="Encodings\General\Crossovers\MultiVRPManipulator.cs" /> 110 <Compile Include="Encodings\General\Crossovers\MultiVRPCrossover.cs" /> 111 <Compile Include="Encodings\General\Creators\RandomCreator.cs" /> 110 112 <Compile Include="Encodings\Potvin\Crossovers\SequenceBasedCrossover.cs" /> 111 113 <Compile Include="Encodings\Potvin\Crossovers\PotvinCrossover.cs" /> … … 116 118 <Compile Include="VRPUtilities.cs" /> 117 119 <Compile Include="VRPOperator.cs" /> 118 <Compile Include="Encodings\General\ PushForwardInsertionCreator.cs" />119 <Compile Include="Encodings\General\ DefaultRepresentationCreator.cs" />120 <Compile Include="Encodings\General\Creators\PushForwardInsertionCreator.cs" /> 121 <Compile Include="Encodings\General\Creators\DefaultRepresentationCreator.cs" /> 120 122 <Compile Include="Encodings\Alba\Crossovers\AlbaCrossover.cs" /> 121 123 <Compile Include="Encodings\Alba\Interfaces\IAlbaTranslocationMoveOperator.cs" />
Note: See TracChangeset
for help on using the changeset viewer.