You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// An IRandomization using Coolgreen's FastRandom (http://www.codeproject.com/Articles/9187/A-fast-equivalent-for-System-Random) has pseudo-number generator.
/// </summary>
public class FastRandomRandomization : RandomizationBase
{
#region Fields
private FastRandom m_random = new FastRandom(DateTime.Now.Millisecond);
#endregion
#region Methods
/// <summary>
/// Gets an integer value between minimum value (inclusive) and maximum value (exclusive).
/// </summary>
/// <returns>The integer.</returns>
/// <param name="min">Minimum value (inclusive).</param>
/// <param name="max">Maximum value (exclusive).</param>