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
Linear congruential generator implementation in vjass.
Example
local LCG gen =LCG.create(-1) // -1 for random seed
local real r = gen.real(-1, 3) // --> [-1., 3.]
local integer i = gen.integer(-10, 20) // --> [-10, 20]
About
Linear congruential generator implementation in vjass