- Timestamp:
- 06/28/17 16:49:13 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.LinearLinkageEncoding/3.4
- Files:
-
- 12 added
- 6 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/HeuristicLab.Encodings.LinearLinkageEncoding-3.4.csproj
r14663 r15079 165 165 <Compile Include="Crossovers\SinglePointCrossover.cs" /> 166 166 <Compile Include="Interfaces\ILinearLinkageMoveOperator.cs" /> 167 <Compile Include="Interfaces\ILinearLinkageEMSSMoveOperator.cs" /> 167 168 <Compile Include="Interfaces\ILinearLinkageSwap2MoveOperator.cs" /> 168 169 <Compile Include="Interfaces\ILinearLinkageCreator.cs" /> … … 177 178 <Compile Include="Manipulators\MergeGroupManipulator.cs" /> 178 179 <Compile Include="Manipulators\MultiLLEManipulator.cs" /> 179 <Compile Include="Moves\ExtractMove.cs" /> 180 <Compile Include="Moves\MergeMove.cs" /> 181 <Compile Include="Moves\Move.cs" /> 182 <Compile Include="Moves\ShiftMove.cs" /> 183 <Compile Include="Moves\SplitMove.cs" /> 184 <Compile Include="Moves\StaticAPI\MoveGenerator.cs" /> 180 <Compile Include="Moves\EMSS\EMSSMoveMaker.cs" /> 181 <Compile Include="Moves\EMSS\ExtractMove.cs" /> 182 <Compile Include="Moves\EMSS\MergeMove.cs" /> 183 <Compile Include="Moves\EMSS\EMSSMove.cs" /> 184 <Compile Include="Moves\EMSS\ExhaustiveEMSSMoveGenerator.cs" /> 185 <Compile Include="Moves\EMSS\EMSSMoveGenerator.cs" /> 186 <Compile Include="Moves\EMSS\StochasticEMSSMultiMoveGenerator.cs" /> 187 <Compile Include="Moves\EMSS\StochasticEMSSSingleMoveGenerator.cs" /> 188 <Compile Include="Moves\EMSS\ShiftMove.cs" /> 189 <Compile Include="Moves\EMSS\SplitMove.cs" /> 185 190 <Compile Include="Moves\Swap\ExhaustiveSwap2MoveGenerator.cs" /> 186 191 <Compile Include="Moves\Swap\StochasticSwap2MultiMoveGenerator.cs" /> -
trunk/sources/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/ExhaustiveSwap2MoveGenerator.cs
r14185 r15079 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 [Item("ExhaustiveSwap2MoveGenerator", "Generates all possible swap-2 moves from a given permutation.")]31 [Item("ExhaustiveSwap2MoveGenerator", "Generates all possible swap-2 moves from a given lle grouping.")] 32 32 [StorableClass] 33 33 public class ExhaustiveSwap2MoveGenerator : Swap2MoveGenerator, IExhaustiveMoveGenerator { -
trunk/sources/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/StochasticSwap2SingleMoveGenerator.cs
r14185 r15079 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 [Item("StochasticSwap2SingleMoveGenerator", "Randomly samples a single from all possible swap-2 moves from a given grouping.")]31 [Item("StochasticSwap2SingleMoveGenerator", "Randomly samples a single from all possible swap-2 moves from a given lle grouping.")] 32 32 [StorableClass] 33 33 public class StochasticSwap2SingleMoveGenerator : Swap2MoveGenerator, IStochasticOperator, ISingleMoveGenerator {
Note: See TracChangeset
for help on using the changeset viewer.