Update the random number generation scheme to use a PCG-DXSM-based generator.
... | ... | @@ -18,8 +18,7 @@ bitmap = { path = "libraries/bitmap" } |
kdtree = { path = "libraries/kdtree" } | ||
process = { path = "libraries/process" } | ||
queue = { path = "libraries/queue" } | ||
rand = { version = "0.8", default-features = false, features = ["std"] } | ||
rand_distr = "0.4" | ||
rand_pcg = "0.3" | ||
rand_chacha = "0.3" | ||
rand = { git = "https://github.com/adamreichold/rand.git", branch = "numpy-compat", default-features = false, features = ["std", "nightly"] } | ||
rand_distr = { git = "https://github.com/adamreichold/rand.git", branch = "numpy-compat" } | ||
rand_pcg = { git = "https://github.com/adamreichold/rand.git", branch = "numpy-compat" } | ||
raster = { path = "libraries/raster" } |
Please register or sign in to comment