Changeset 17097 for stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/SPSO2011VelocityInitializer.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.RealVectorEncoding
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/SPSO2011VelocityInitializer.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Encodings.RealVectorEncoding { 27 27 [Item("Velocity Initializer (SPSO 2011)", "Initializes the velocity vector.")] 28 [Storable Class]28 [StorableType("E844F8B9-068B-433D-8693-9416CA9140FB")] 29 29 public class SPSO2011VelocityInitializer : SPSOVelocityInitializer { 30 30 31 31 #region Construction & Cloning 32 32 [StorableConstructor] 33 protected SPSO2011VelocityInitializer( bool deserializing) : base(deserializing) { }33 protected SPSO2011VelocityInitializer(StorableConstructorFlag _) : base(_) { } 34 34 protected SPSO2011VelocityInitializer(SPSO2011VelocityInitializer original, Cloner cloner) : base(original, cloner) { } 35 35 public SPSO2011VelocityInitializer() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.