Changeset 5838 for branches/QAP/HeuristicLab.Encodings.PermutationEncoding
- Timestamp:
- 03/28/11 15:34:30 (14 years ago)
- 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 168 168 <Compile Include="Moves\PermutationMoveAttribute.cs" /> 169 169 <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" /> 181 181 <Compile Include="Moves\ThreeIndexMove.cs" /> 182 182 <Compile Include="Moves\ThreeOpt\StochasticSingleInsertionMoveGenerator.cs" /> -
branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Interfaces/IPermutationSwapMoveOperator.cs
r5785 r5838 23 23 24 24 namespace HeuristicLab.Encodings.PermutationEncoding { 25 public interface IPermutationSwap MoveOperator : IPermutationMoveOperator {26 ILookupParameter<Swap Move> SwapMoveParameter { get; }25 public interface IPermutationSwap2MoveOperator : IPermutationMoveOperator { 26 ILookupParameter<Swap2Move> Swap2MoveParameter { get; } 27 27 } 28 28 } -
branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeIndexMove.cs
r5445 r5838 25 25 26 26 namespace 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.")] 28 28 [StorableClass] 29 29 public class ThreeIndexMove : Item { -
branches/QAP/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoIndexMove.cs
r5445 r5838 25 25 26 26 namespace 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.")] 28 28 [StorableClass] 29 29 public class TwoIndexMove : Item {
Note: See TracChangeset
for help on using the changeset viewer.