Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/AverageBitBinaryVectorComparer.cs
r14185 r14927 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.BinaryVectorEncoding; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Problems.NK { 29 29 [Item("Average Bit Binary Vector Comparer", "Compares two binary vectors by their average positive bit location")] 30 [Storable Class]30 [StorableType("66dec84c-7302-476d-b216-084e15f97f90")] 31 31 public sealed class AverageBitBinaryVectorComparer : Item, IBinaryVectorComparer { 32 32 [StorableConstructor] -
branches/PersistenceReintegration/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/LexicographicBinaryVectorComparer.cs
r14185 r14927 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.BinaryVectorEncoding; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Problems.NK { 29 29 [Item("Lexicographic Binary Vector Comparer", "Compares two binary vectors lexicographically")] 30 [Storable Class]30 [StorableType("fdba9a24-b6a5-42d6-97ba-95a12e8f7f1f")] 31 31 public sealed class LexicographicBinaryVectorComparer : Item, IBinaryVectorComparer { 32 32 [StorableConstructor] -
branches/PersistenceReintegration/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/MedianBitBinaryVectorComparer.cs
r14185 r14927 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.BinaryVectorEncoding; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Problems.NK { 29 29 [Item("Median Bit Binary Vector Comparer", "Compares two binary vectors by the median positive bit location")] 30 [Storable Class]30 [StorableType("7597d402-1669-45de-bcb5-67e491023316")] 31 31 public sealed class MedianBitBinaryVectorComparer : Item, IBinaryVectorComparer { 32 32 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.