Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Operators; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 [Storable Class]31 [StorableType("674a6b80-204a-4299-9b3f-67034573200a")] 32 32 public class QAPEvaluator : InstrumentedOperator, IQAPEvaluator { 33 33 -
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPInversionMoveEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 31 [Item("QAPInversionMoveEvaluator", "Evaluated an inversion move on a QAP solution.")] 32 [Storable Class]32 [StorableType("aa0647dd-cadb-4c19-b31e-c54f46adda96")] 33 33 public class QAPInversionMoveEvaluator : QAPMoveEvaluator, IPermutationInversionMoveOperator { 34 34 public ILookupParameter<InversionMove> InversionMoveParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPMoveEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Operators; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { … … 33 33 /// </summary> 34 34 [Item("QAPMoveEvaluator", "A base class for operators which evaluate moves.")] 35 [Storable Class]35 [StorableType("6260567a-ebe9-40fd-aed6-744aebde2218")] 36 36 public abstract class QAPMoveEvaluator : SingleSuccessorOperator, IQAPMoveEvaluator { 37 37 -
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPScrambleMoveEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 31 [Item("QAPScrambleMoveEvaluator", "Evaluated a scramble move on a QAP solution.")] 32 [Storable Class]32 [StorableType("bf499e2e-3228-423a-a9a5-cf9bfd702b1c")] 33 33 public class QAPScrambleMoveEvaluator : QAPMoveEvaluator, IPermutationScrambleMoveOperator { 34 34 public ILookupParameter<ScrambleMove> ScrambleMoveParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPSwap2MoveEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 31 [Item("QAPSwap2MoveEvaluator", "Evaluated a swap-2 move on a QAP solution.")] 32 [Storable Class]32 [StorableType("7a415249-ea01-4974-9fed-db3c6b216d5b")] 33 33 public class QAPSwap2MoveEvaluator : QAPMoveEvaluator, IPermutationSwap2MoveOperator { 34 34 public ILookupParameter<Swap2Move> Swap2MoveParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPTranslocationMoveEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 31 [Item("QAPTranslocationMoveEvaluator", "Evaluates translocation moves on a QAP solution.")] 32 [Storable Class]32 [StorableType("c18c3fb8-6da4-412c-aec0-bfc50c5891ac")] 33 33 public class QAPTranslocationMoveEvaluator : QAPMoveEvaluator, IPermutationTranslocationMoveOperator { 34 34
Note: See TracChangeset
for help on using the changeset viewer.