Changeset 10102 for branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers
- Timestamp:
- 10/31/13 14:54:33 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperators
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperators/QAPAfterMutationCombinedOperator.cs
r9789 r10102 20 20 #endregion 21 21 22 using HeuristicLab.Analysis.SolutionCaching.PermutationEncoding; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; … … 27 28 [Item("QAPAfterMutationCombinedOperator", "An operator that contains all operators that need to be executed after mutation for the QAP.")] 28 29 [StorableClass] 29 public class QAPAfterMutationCombinedOperator : AfterMutationCombinedOperator {30 public class QAPAfterMutationCombinedOperator : AfterMutationCombinedOperator, IPermutationAdvice { 30 31 [StorableConstructor] 31 32 protected QAPAfterMutationCombinedOperator(bool deserializing) : base(deserializing) { } -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperators/TFAfterMutationCombinedOperator.cs
r9789 r10102 20 20 #endregion 21 21 22 using HeuristicLab.Analysis.SolutionCaching.RealVectorEncoding; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; … … 27 28 [Item("TFAfterMutationCombinedOperator", "An operator that contains all operators that need to be executed after mutation for test functions.")] 28 29 [StorableClass] 29 public class TFAfterMutationCombinedOperator : AfterMutationCombinedOperator {30 public class TFAfterMutationCombinedOperator : AfterMutationCombinedOperator, IRealVectorAdvice { 30 31 31 32 [StorableConstructor] -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperators/TSPAfterMutationCombinedOperator.cs
r9789 r10102 20 20 #endregion 21 21 22 using HeuristicLab.Analysis.SolutionCaching.PermutationEncoding; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; … … 27 28 [Item("TSPAfterMutationCombinedOperator", "An operator that contains all operators that need to be executed after mutation for the TSP.")] 28 29 [StorableClass] 29 public class TSPAfterMutationCombinedOperator : AfterMutationCombinedOperator {30 public class TSPAfterMutationCombinedOperator : AfterMutationCombinedOperator, IPermutationAdvice { 30 31 [StorableConstructor] 31 32 protected TSPAfterMutationCombinedOperator(bool deserializing) : base(deserializing) { }
Note: See TracChangeset
for help on using the changeset viewer.