- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Random/3.3/NormalDistributedRandom.cs
r12012 r13368 33 33 /// </summary> 34 34 [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")] 36 36 public sealed class NormalDistributedRandom : Item, IRandom { 37 37 [Storable] 38 38 private double mu; 39 39 /// <summary> 40 /// Gets or sets the value for µ.40 /// Gets or sets the value for ï¿œ. 41 41 /// </summary> 42 42 public double Mu { … … 469 469 470 470 /// <summary> 471 /// Initializes a new instance of <see cref="NormalDistributedRandom"/> with µ= 0 and sigma = 1471 /// Initializes a new instance of <see cref="NormalDistributedRandom"/> with ï¿œ = 0 and sigma = 1 472 472 /// and a new random number generator. 473 473 /// </summary> … … 483 483 /// </summary> 484 484 /// <param name="uniformRandom">The random number generator.</param> 485 /// <param name="mu">The value for µ.</param>485 /// <param name="mu">The value for ï¿œ.</param> 486 486 /// <param name="sigma">The value for sigma.</param> 487 487 public NormalDistributedRandom(IRandom uniformRandom, double mu, double sigma) {
Note: See TracChangeset
for help on using the changeset viewer.