gnu: Add r-rlecuyer.

* gnu/packages/cran.scm (r-rlecuyer): New variable.
This commit is contained in:
Ricardo Wurmus 2022-09-28 19:55:48 +02:00
parent f4442721eb
commit d1f1947a46
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -26802,6 +26802,28 @@ (define-public r-zyp
climate data.")
(license license:lgpl2.1)))
(define-public r-rlecuyer
(package
(name "r-rlecuyer")
(version "0.3-5")
(source (origin
(method url-fetch)
(uri (cran-uri "rlecuyer" version))
(sha256
(base32
"09mniai7v8gapr6hd3zm8sm3vi1zcyhgym389904ykb2yx7l68s7"))))
(properties `((upstream-name . "rlecuyer")))
(build-system r-build-system)
(home-page
"https://www.iro.umontreal.ca/~lecuyer/myftp/papers/streams00.pdf")
(synopsis "R interface to RNG with multiple streams")
(description
"This package provides an interface to the C implementation of the random
number generator with multiple independent streams developed by L'Ecuyer et
al (2002). The main purpose of this package is to enable the use of this
random number generator in parallel R applications.")
(license license:gpl2+)))
(define-public r-rlinsolve
(package
(name "r-rlinsolve")