mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add r-dorng.
* gnu/packages/cran.scm (r-dorng): New variable.
This commit is contained in:
parent
4dc2ecc279
commit
c691c607d7
1 changed files with 29 additions and 0 deletions
|
@ -10839,3 +10839,32 @@ (define-public r-capushe
|
||||||
for model selection. The calibration methods available are based on the slope
|
for model selection. The calibration methods available are based on the slope
|
||||||
heuristics.")
|
heuristics.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-dorng
|
||||||
|
(package
|
||||||
|
(name "r-dorng")
|
||||||
|
(version "1.7.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "doRNG" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
|
||||||
|
(properties `((upstream-name . "doRNG")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-foreach" ,r-foreach)
|
||||||
|
("r-iterators" ,r-iterators)
|
||||||
|
("r-pkgmaker" ,r-pkgmaker)
|
||||||
|
("r-rngtools" ,r-rngtools)))
|
||||||
|
(home-page "https://renozao.github.io/doRNG/")
|
||||||
|
(synopsis "Generic reproducible parallel backend for foreach loops")
|
||||||
|
(description
|
||||||
|
"This package provides functions to perform reproducible parallel
|
||||||
|
@code{foreach} loops, using independent random streams as generated by
|
||||||
|
L'Ecuyer's combined multiple-recursive generator. It enables to easily
|
||||||
|
convert standard @code{%dopar%} loops into fully reproducible loops,
|
||||||
|
independently of the number of workers, the task scheduling strategy, or the
|
||||||
|
chosen parallel environment and associated foreach backend.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue