Changeset 17097 for stable/HeuristicLab.Operators/3.3/LocalRandomCreator.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Operators/3.3/LocalRandomCreator.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. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Parameters; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Operators { 28 28 [Item("LocalRandomCreator", "Creates a local pseudo random number generator from a global random number generator.")] 29 [Storable Class]29 [StorableType("C1E56840-D71E-46F0-A964-AB8E9340333C")] 30 30 public sealed class LocalRandomCreator : SingleSuccessorOperator { 31 31 #region Parameter Properties … … 39 39 40 40 [StorableConstructor] 41 private LocalRandomCreator( bool deserializing) : base(deserializing) { }41 private LocalRandomCreator(StorableConstructorFlag _) : base(_) { } 42 42 private LocalRandomCreator(LocalRandomCreator original, Cloner cloner) 43 43 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.