This commit is contained in:
Thorsten Sommer 2020-11-01 09:46:54 +01:00
parent 74da81e833
commit e5aa1db7ae
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ namespace FastRng.Double
/// <summary> /// <summary>
/// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D. /// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D.
/// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation). /// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation).
/// Thanks John for your work. /// Thanks John for the inspiration.
/// </summary> /// </summary>
public sealed class MultiThreadedRng : IRandom public sealed class MultiThreadedRng : IRandom
{ {

View File

@ -10,7 +10,7 @@ namespace FastRng.Float
/// <summary> /// <summary>
/// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D. /// This class uses the George Marsaglia's MWC algorithm. The algorithm's implementation based loosely on John D.
/// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation). /// Cook's (johndcook.com) implementation (https://www.codeproject.com/Articles/25172/Simple-Random-Number-Generation).
/// Thanks John for your work. /// Thanks John for the inspiration.
/// </summary> /// </summary>
public sealed class MultiThreadedRng : IRandom public sealed class MultiThreadedRng : IRandom
{ {