Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (8 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Random/3.3/NormalDistributedRandom.cs

    r12012 r13368  
    3333  /// </summary>
    3434  [Item("NormalDistributedRandom", "A pseudo random number generator which uses the Ziggurat method to create normally distributed random numbers.")]
    35   [StorableClass]
     35  [StorableClass("D9DA2DBC-A969-4BCE-89D4-35750B8CA73A")]
    3636  public sealed class NormalDistributedRandom : Item, IRandom {
    3737    [Storable]
    3838    private double mu;
    3939    /// <summary>
    40     /// Gets or sets the value for µ.
     40    /// Gets or sets the value for ï¿œ.
    4141    /// </summary>
    4242    public double Mu {
     
    469469
    470470    /// <summary>
    471     /// Initializes a new instance of <see cref="NormalDistributedRandom"/> with µ = 0 and sigma = 1
     471    /// Initializes a new instance of <see cref="NormalDistributedRandom"/> with ï¿œ = 0 and sigma = 1
    472472    /// and a new random number generator.
    473473    /// </summary>
     
    483483    /// </summary>   
    484484    /// <param name="uniformRandom">The random number generator.</param>
    485     /// <param name="mu">The value for µ.</param>
     485    /// <param name="mu">The value for ï¿œ.</param>
    486486    /// <param name="sigma">The value for sigma.</param>
    487487    public NormalDistributedRandom(IRandom uniformRandom, double mu, double sigma) {
Note: See TracChangeset for help on using the changeset viewer.