- Timestamp:
- 07/07/19 23:40:10 (5 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/RealVectorCreator.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 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { … … 33 33 /// </summary> 34 34 [Item("RealVectorCreator", "A base class for operators creating real-valued vectors.")] 35 [Storable Class]35 [StorableType("C6A3C750-7BAF-4BE7-91CC-D8290F3B006E")] 36 36 public abstract class RealVectorCreator : InstrumentedOperator, IRealVectorCreator, IStochasticOperator { 37 37 public override bool CanChangeName { … … 53 53 54 54 [StorableConstructor] 55 protected RealVectorCreator( bool deserializing) : base(deserializing) { }55 protected RealVectorCreator(StorableConstructorFlag _) : base(_) { } 56 56 protected RealVectorCreator(RealVectorCreator original, Cloner cloner) : base(original, cloner) { } 57 57 protected RealVectorCreator()
Note: See TracChangeset
for help on using the changeset viewer.