![]() |
SystemEX
Lacking
Additional generic collection types missing in .net
|
Represents the ISAAC 32-bit random number generator. More...
Public Member Functions | |
| Isaac32Engine (uint a=0, uint b=0, uint c=0) | |
| Initializes a new instance of the Isaac32Engine class with the specified seed values. | |
| void | Seed (uint a, uint b, uint c, uint[]? s=null) |
| Seeds the random number generator with the specified values. | |
| uint | Next () |
| Generates the next random number in the sequence. | |
Represents the ISAAC 32-bit random number generator.
| SystemEx.Random.Isaac32Engine.Isaac32Engine | ( | uint | a = 0, |
| uint | b = 0, | ||
| uint | c = 0 ) |
Initializes a new instance of the Isaac32Engine class with the specified seed values.
| a | The first seed value. |
| b | The second seed value. |
| c | The third seed value. |
| uint SystemEx.Random.Isaac32Engine.Next | ( | ) |
Generates the next random number in the sequence.
| void SystemEx.Random.Isaac32Engine.Seed | ( | uint | a, |
| uint | b, | ||
| uint | c, | ||
| uint?[] | s = null ) |
Seeds the random number generator with the specified values.
| a | The first seed value. |
| b | The second seed value. |
| c | The third seed value. |
| s | The seed array, or null to use default values. |