Changeset 13396 for branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt
- Timestamp:
- 11/25/15 16:22:37 (9 years ago)
- Location:
- branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveHardTabuCriterion.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 InversionMoveHardTabuCriterion : SingleSuccessorOperator, IPermutationInversionMove Operator, ITabuChecker {37 public class InversionMoveHardTabuCriterion : SingleSuccessorOperator, IPermutationInversionMoveQualityOperator, ITabuChecker { 38 38 public override bool CanChangeName { 39 39 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveMaker.cs
r12012 r13396 31 31 [Item("InversionMoveMaker", "Peforms an inversion move (2-opt) on a given permutation and updates the quality.")] 32 32 [StorableClass] 33 public class InversionMoveMaker : SingleSuccessorOperator, IPermutationInversionMove Operator, IMoveMaker, ISingleObjectiveOperator {33 public class InversionMoveMaker : SingleSuccessorOperator, IPermutationInversionMoveQualityOperator, IMoveMaker, ISingleObjectiveOperator { 34 34 public override bool CanChangeName { 35 35 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveSoftTabuCriterion.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 InversionMoveSoftTabuCriterion : SingleSuccessorOperator, IPermutationInversionMove Operator, ITabuChecker {37 public class InversionMoveSoftTabuCriterion : SingleSuccessorOperator, IPermutationInversionMoveQualityOperator, ITabuChecker { 38 38 public override bool CanChangeName { 39 39 get { return false; } -
branches/ProblemRefactoring/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveTabuMaker.cs
r12012 r13396 29 29 [Item("InversionMoveTabuMaker", "Declares a given inversion move (2-opt) 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 InversionMoveTabuMaker : TabuMaker, IPermutationInversionMove Operator {31 public class InversionMoveTabuMaker : TabuMaker, IPermutationInversionMoveQualityOperator { 32 32 public ILookupParameter<Permutation> PermutationParameter { 33 33 get { return (ILookupParameter<Permutation>)Parameters["Permutation"]; }
Note: See TracChangeset
for help on using the changeset viewer.