Class: RandomDraws
Constructors
new RandomDraws()
new RandomDraws():
RandomDraws
Returns
Properties
samplingCheckInterval
staticsamplingCheckInterval:number=4096
Number of loop iterations between checks. Tuneable for tests.
Defined in
m2c2kit/packages/core/src/RandomDraws.ts:10
samplingTimeoutMs
staticsamplingTimeoutMs:number=5000
Number of milliseconds before sampling times out. Tuneable for tests or legitimate edge use cases.
Defined in
m2c2kit/packages/core/src/RandomDraws.ts:8
samplingWarnMs
staticsamplingWarnMs:number=1000
Number of milliseconds before a warning is logged if sampling takes too long. Tuneable for tests.
Defined in
m2c2kit/packages/core/src/RandomDraws.ts:6
Methods
fromGridWithoutReplacement()
staticfromGridWithoutReplacement(n,rows,columns,predicate?):object[]
Draw random grid cell locations, without replacement, from a uniform distribution of all grid cells. Grid cell locations are zero-based, i.e., upper-left is (0,0).
Parameters
• n: number
Number of draws
• rows: number
Number of rows in grid; must be at least 1
• columns: number
Number of columns in grid; must be at least 1
• predicate?
Optional lambda function that takes a grid row number and grid column number pair and returns a boolean to indicate if the pair should be allowed. For example, if one wanted to constrain the random grid location to be along the diagonal, the predicate would be: (row, column) => row === column
Returns
object[]
Array of grid cells. Each cell is object in form of: { row: number, column: number }. Grid cell locations are zero-based
Defined in
m2c2kit/packages/core/src/RandomDraws.ts:192
FromGridWithoutReplacement()
staticFromGridWithoutReplacement(n,rows,columns,predicate?):object[]
Parameters
• n: number
• rows: number
• columns: number
• predicate?
Returns
object[]
Deprecated
Use fromGridWithoutReplacement() instead.
Defined in
m2c2kit/packages/core/src/RandomDraws.ts:249
fromRangeWithoutReplacement()
staticfromRangeWithoutReplacement(n,minimumInclusive,maximumInclusive):number[]
Draws random integers, without replacement, from a uniform distribution of integers in the specified range.
Parameters
• n: number
Number of draws
• minimumInclusive: number
Lower bound of range