- Timestamp:
- 09/11/19 13:10:08 (5 years ago)
- Location:
- branches/3027-NormalDistribution/HeuristicLab.Random/3.3
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3027-NormalDistribution/HeuristicLab.Random/3.3/HeuristicLab.Random-3.3.csproj
r16658 r17244 120 120 <Compile Include="GammaDistributedRandom.cs" /> 121 121 <Compile Include="ListExtensions.cs" /> 122 <Compile Include="NormalDistributedRandomPolar.cs" /> 123 <Compile Include="NormalRandomizerPolar.cs" /> 122 124 <Compile Include="RandomSeedGenerator.cs" /> 123 125 <Compile Include="UniformDistributedRandom.cs" /> -
branches/3027-NormalDistribution/HeuristicLab.Random/3.3/NormalDistributedRandom.cs
r17180 r17244 34 34 [Item("NormalDistributedRandom", "A pseudo random number generator which uses the Ziggurat method to create normally distributed random numbers.")] 35 35 [StorableType("240F7050-C05B-4E85-82C3-2871FE2138B1")] 36 [Obsolete("Use NormalDistributedRandomPolar instead.")] 36 37 public sealed class NormalDistributedRandom : Item, IRandom { 37 38 [Storable] … … 449 450 }; 450 451 451 /// <summary>452 /// Used by HeuristicLab.Persistence to initialize new instances during deserialization.453 /// </summary>454 /// <param name="deserializing">true, if the constructor is called during deserialization.</param>455 452 [StorableConstructor] 456 453 private NormalDistributedRandom(StorableConstructorFlag _) : base(_) { } … … 480 477 /// <summary> 481 478 /// Initializes a new instance of <see cref="NormalDistributedRandom"/> with the given parameters. 482 /// <note type="caution"> No CopyConstructor!The random number generator is not copied!</note>479 /// <note type="caution">The random number generator is not copied!</note> 483 480 /// </summary> 484 481 /// <param name="uniformRandom">The random number generator.</param> … … 537 534 /// Clones the current instance (deep clone). 538 535 /// </summary> 539 /// <remarks>Deep clone through <see cref="cloner.Clone"/> method of helper class 540 /// <see cref="Auxiliary"/>.</remarks> 541 /// <param name="clonedObjects">Dictionary of all already cloned objects. (Needed to avoid cycles.)</param> 536 /// <remarks>Deep clone through <see cref="cloner.Clone"/> method of helper class.</remarks> 542 537 /// <returns>The cloned object as <see cref="NormalDistributedRandom"/>.</returns> 543 538 public override IDeepCloneable Clone(Cloner cloner) { -
branches/3027-NormalDistribution/HeuristicLab.Random/3.3/NormalRandomizer.cs
r17180 r17244 26 26 using HeuristicLab.Parameters; 27 27 using HEAL.Attic; 28 using System; 28 29 29 30 namespace HeuristicLab.Random { … … 33 34 [StorableType("0EAF4184-6C98-4C9D-80A1-09A42E03450E")] 34 35 [Item("NormalRandomizer", "Initializes the value of variable 'Value' to a random value normally distributed with parameters 'Mu' and 'Sigma'")] 36 [Obsolete("Use NormalRandomizerPolar instead.")] 35 37 public class NormalRandomizer : SingleSuccessorOperator { 36 38 #region Parameter Properties
Note: See TracChangeset
for help on using the changeset viewer.