Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/11 15:34:30 (13 years ago)
Author:
abeham
Message:

#1330

  • Renamed the DistanceMatrix parameter to Distances
  • Renamed the SwapMove to Swap2Move and renamed operators accordingly
  • Integrated changes in HeuristicLab.Analysis.Views regarding description text box
Location:
branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3
Files:
11 added
11 deleted
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/HeuristicLab.Encodings.PermutationEncoding-3.3.csproj

    r5785 r5838  
    168168    <Compile Include="Moves\PermutationMoveAttribute.cs" />
    169169    <Compile Include="Moves\StandardEdgeEqualityComparer.cs" />
    170     <Compile Include="Moves\Swap\SwapMoveSoftTabuCriterion.cs" />
    171     <Compile Include="Moves\Swap\ExhaustiveSwapMoveGenerator.cs" />
    172     <Compile Include="Moves\Swap\StochasticSwapSingleMoveGenerator.cs" />
    173     <Compile Include="Moves\Swap\SwapMoveAbsoluteAttribute.cs" />
    174     <Compile Include="Moves\Swap\SwapMoveHardTabuCriterion.cs" />
    175     <Compile Include="Moves\Swap\SwapMoveMaker.cs" />
    176     <Compile Include="Moves\Swap\SwapMoveRelativeAttribute.cs" />
    177     <Compile Include="Moves\Swap\SwapMoveTabuMaker.cs" />
    178     <Compile Include="Moves\Swap\StochasticSwapMultiMoveGenerator.cs" />
    179     <Compile Include="Moves\Swap\SwapMoveGenerator.cs" />
    180     <Compile Include="Moves\Swap\SwapMove.cs" />
     170    <Compile Include="Moves\Swap2\ExhaustiveSwap2MoveGenerator.cs" />
     171    <Compile Include="Moves\Swap2\StochasticSwap2MultiMoveGenerator.cs" />
     172    <Compile Include="Moves\Swap2\StochasticSwap2SingleMoveGenerator.cs" />
     173    <Compile Include="Moves\Swap2\Swap2Move.cs" />
     174    <Compile Include="Moves\Swap2\Swap2MoveAbsoluteAttribute.cs" />
     175    <Compile Include="Moves\Swap2\Swap2MoveGenerator.cs" />
     176    <Compile Include="Moves\Swap2\Swap2MoveHardTabuCriterion.cs" />
     177    <Compile Include="Moves\Swap2\Swap2MoveMaker.cs" />
     178    <Compile Include="Moves\Swap2\Swap2MoveRelativeAttribute.cs" />
     179    <Compile Include="Moves\Swap2\Swap2MoveSoftTabuCriterion.cs" />
     180    <Compile Include="Moves\Swap2\Swap2MoveTabuMaker.cs" />
    181181    <Compile Include="Moves\ThreeIndexMove.cs" />
    182182    <Compile Include="Moves\ThreeOpt\StochasticSingleInsertionMoveGenerator.cs" />
  • branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Interfaces/IPermutationSwapMoveOperator.cs

    r5785 r5838  
    2323
    2424namespace HeuristicLab.Encodings.PermutationEncoding {
    25   public interface IPermutationSwapMoveOperator : IPermutationMoveOperator {
    26     ILookupParameter<SwapMove> SwapMoveParameter { get; }
     25  public interface IPermutationSwap2MoveOperator : IPermutationMoveOperator {
     26    ILookupParameter<Swap2Move> Swap2MoveParameter { get; }
    2727  }
    2828}
  • branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeIndexMove.cs

    r5445 r5838  
    2525
    2626namespace HeuristicLab.Encodings.PermutationEncoding {
    27   [Item("ThreeIndexMove", "A move on a permutation that is specified by 3 indices")]
     27  [Item("ThreeIndexMove", "A move on a permutation that is specified by 3 indices.")]
    2828  [StorableClass]
    2929  public class ThreeIndexMove : Item {
  • branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoIndexMove.cs

    r5445 r5838  
    2525
    2626namespace HeuristicLab.Encodings.PermutationEncoding {
    27   [Item("TwoIndexMove", "A move on a permutation that is specified by 2 indices")]
     27  [Item("TwoIndexMove", "A move on a permutation that is specified by 2 indices.")]
    2828  [StorableClass]
    2929  public class TwoIndexMove : Item {
Note: See TracChangeset for help on using the changeset viewer.