- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.RealVectorEncoding
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/Creators/NormalDistributedRealVectorCreator.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Random; 30 30 … … 34 34 /// </summary> 35 35 [Item("NormalDistributedRealVectorCreator", "An operator which creates a new random real vector with each element normally distributed in a specified range.")] 36 [Storable Class]36 [StorableType("790F7401-DD2A-4910-8632-F737E39CE6EE")] 37 37 public class NormalDistributedRealVectorCreator : RealVectorCreator, IStrategyParameterCreator { 38 38 … … 50 50 51 51 [StorableConstructor] 52 protected NormalDistributedRealVectorCreator( bool deserializing) : base(deserializing) { }52 protected NormalDistributedRealVectorCreator(StorableConstructorFlag _) : base(_) { } 53 53 protected NormalDistributedRealVectorCreator(NormalDistributedRealVectorCreator original, Cloner cloner) : base(original, cloner) { } 54 54 public NormalDistributedRealVectorCreator() -
stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/Creators/UniformRandomRealVectorCreator.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.Optimization; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.RealVectorEncoding { … … 32 32 /// </summary> 33 33 [Item("UniformRandomRealVectorCreator", "An operator which creates a new random real vector with each element uniformly distributed in a specified range.")] 34 [Storable Class]34 [StorableType("DF237BEA-D21B-4A2C-820B-47CCC998D0E1")] 35 35 public class UniformRandomRealVectorCreator : RealVectorCreator, IStrategyParameterCreator { 36 36 [StorableConstructor] 37 protected UniformRandomRealVectorCreator( bool deserializing) : base(deserializing) { }37 protected UniformRandomRealVectorCreator(StorableConstructorFlag _) : base(_) { } 38 38 protected UniformRandomRealVectorCreator(UniformRandomRealVectorCreator original, Cloner cloner) : base(original, cloner) { } 39 39 public UniformRandomRealVectorCreator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.