Changeset 17097 for stable/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/BoundedIntegerVectorCrossover.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.IntegerVectorEncoding
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/BoundedIntegerVectorCrossover.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.IntegerVectorEncoding { 30 30 [Item("BoundedIntegerVectorCrossover", "Base class for bounded crossovers.")] 31 [Storable Class]31 [StorableType("90834C8F-461F-4A94-A7CB-25C8D1063604")] 32 32 public abstract class BoundedIntegerVectorCrossover : IntegerVectorCrossover, IBoundedIntegerVectorOperator { 33 33 … … 37 37 38 38 [StorableConstructor] 39 protected BoundedIntegerVectorCrossover( bool deserializing) : base(deserializing) { }39 protected BoundedIntegerVectorCrossover(StorableConstructorFlag _) : base(_) { } 40 40 protected BoundedIntegerVectorCrossover(BoundedIntegerVectorCrossover original, Cloner cloner) : base(original, cloner) { } 41 41 public BoundedIntegerVectorCrossover()
Note: See TracChangeset
for help on using the changeset viewer.