Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/21 08:15:07 (4 years ago)
Author:
gkronber
Message:

#3027: merged r17806, r17810 from trunk to stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Random

  • stable/HeuristicLab.Random/3.3/NormalDistributedRandom.cs

    r17181 r17864  
    3434  [Item("NormalDistributedRandom", "A pseudo random number generator which uses the Ziggurat method to create normally distributed random numbers.")]
    3535  [StorableType("240F7050-C05B-4E85-82C3-2871FE2138B1")]
     36  [Obsolete("Use NormalDistributedRandomPolar instead.")]
    3637  public sealed class NormalDistributedRandom : Item, IRandom {
    3738    [Storable]
     
    449450    };
    450451
    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>
    455452    [StorableConstructor]
    456453    private NormalDistributedRandom(StorableConstructorFlag _) : base(_) { }
     
    480477    /// <summary>
    481478    /// 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>
    483480    /// </summary>   
    484481    /// <param name="uniformRandom">The random number generator.</param>
     
    537534    /// Clones the current instance (deep clone).
    538535    /// </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>
    542537    /// <returns>The cloned object as <see cref="NormalDistributedRandom"/>.</returns>
    543538    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.