Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVector.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVector.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Encodings.IntegerVectorEncoding { 29 [Storable Class]29 [StorableType("2DDD33C1-4732-478B-83B1-17226A8F2B61")] 30 30 [Item("IntegerVector", "Represents a vector of integer values.")] 31 31 public class IntegerVector : IntArray { 32 32 [StorableConstructor] 33 protected IntegerVector( bool deserializing) : base(deserializing) { }33 protected IntegerVector(StorableConstructorFlag _) : base(_) { } 34 34 protected IntegerVector(IntegerVector original, Cloner cloner) : base(original, cloner) { } 35 35 public IntegerVector() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.