Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4183


Ignore:
Timestamp:
08/10/10 10:06:14 (14 years ago)
Author:
svonolfe
Message:

Added the MultiVRPCrossover and MultiVRPManipulator operators (#1039)

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  
    4343    public VRPManipulator()
    4444      : 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."));
    4646    }
    4747  }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj

    r4179 r4183  
    107107  <ItemGroup>
    108108    <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" />
    110112    <Compile Include="Encodings\Potvin\Crossovers\SequenceBasedCrossover.cs" />
    111113    <Compile Include="Encodings\Potvin\Crossovers\PotvinCrossover.cs" />
     
    116118    <Compile Include="VRPUtilities.cs" />
    117119    <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" />
    120122    <Compile Include="Encodings\Alba\Crossovers\AlbaCrossover.cs" />
    121123    <Compile Include="Encodings\Alba\Interfaces\IAlbaTranslocationMoveOperator.cs" />
Note: See TracChangeset for help on using the changeset viewer.