Changeset 13396 for branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2
- Timestamp:
- 11/25/15 16:22:37 (9 years ago)
- Location:
- branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2/Swap2MoveHardTabuCriterion.cs
r12012 r13396 35 35 If the aspiration condition is activated, a move will not be considered tabu against a move in the tabu list if it leads to a better solution than the quality recorded with the move in the tabu list.")] 36 36 [StorableClass] 37 public class Swap2MoveHardTabuCriterion : SingleSuccessorOperator, IPermutationSwap2Move Operator, ITabuChecker {37 public class Swap2MoveHardTabuCriterion : SingleSuccessorOperator, IPermutationSwap2MoveQualityOperator, ITabuChecker { 38 38 public override bool CanChangeName { 39 39 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2/Swap2MoveMaker.cs
r12012 r13396 31 31 [Item("Swap2MoveMaker", "Peforms a swap-2 move on a given permutation and updates the quality.")] 32 32 [StorableClass] 33 public class Swap2MoveMaker : SingleSuccessorOperator, IPermutationSwap2Move Operator, IMoveMaker, ISingleObjectiveOperator {33 public class Swap2MoveMaker : SingleSuccessorOperator, IPermutationSwap2MoveQualityOperator, IMoveMaker, ISingleObjectiveOperator { 34 34 public override bool CanChangeName { 35 35 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2/Swap2MoveSoftTabuCriterion.cs
r12012 r13396 35 35 If the aspiration condition is activated, a move will not be considered tabu against a move in the tabu list if it leads to a better solution than the quality recorded with the move in the tabu list.")] 36 36 [StorableClass] 37 public class Swap2MoveSoftTabuCriterion : SingleSuccessorOperator, IPermutationSwap2Move Operator, ITabuChecker {37 public class Swap2MoveSoftTabuCriterion : SingleSuccessorOperator, IPermutationSwap2MoveQualityOperator, ITabuChecker { 38 38 public override bool CanChangeName { 39 39 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/Swap2/Swap2MoveTabuMaker.cs
r12012 r13396 29 29 [Item("Swap2MoveTabuMaker", "Declares a given swap-2 move as tabu, by adding its attributes to the tabu list and also store the solution quality or the move quality (whichever is better).")] 30 30 [StorableClass] 31 public class Swap2MoveTabuMaker : TabuMaker, IPermutationSwap2Move Operator {31 public class Swap2MoveTabuMaker : TabuMaker, IPermutationSwap2MoveQualityOperator { 32 32 public ILookupParameter<Permutation> PermutationParameter { 33 33 get { return (ILookupParameter<Permutation>)Parameters["Permutation"]; }
Note: See TracChangeset
for help on using the changeset viewer.