- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Random/3.3/FastRandom.cs
r8928 r16462 2 2 using HeuristicLab.Common; 3 3 using HeuristicLab.Core; 4 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;4 using HEAL.Fossil; 5 5 6 6 namespace HeuristicLab.Random { … … 43 43 /// 44 44 /// </summary> 45 [Storable Class]45 [StorableType("BC86BFF3-80B5-4C77-9D8C-B29576032634")] 46 46 public sealed class FastRandom : Item, IRandom { 47 47 // The +1 ensures NextDouble doesn't generate 1.0 … … 59 59 /// <param name="deserializing">true, if the constructor is called during deserialization.</param> 60 60 [StorableConstructor] 61 private FastRandom( bool deserializing) : base(deserializing) { }61 private FastRandom(StorableConstructorFlag _) : base(_) { } 62 62 63 63 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.