mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add r-ecosolver.
* gnu/packages/cran.scm (r-ecosolver): New variable.
This commit is contained in:
parent
697a0f8ca4
commit
bde758150f
1 changed files with 24 additions and 0 deletions
|
@ -1922,6 +1922,30 @@ (define-public r-poorman
|
|||
@code{dplyr} and the wider @code{tidyverse} using only @code{base}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-ecosolver
|
||||
(package
|
||||
(name "r-ecosolver")
|
||||
(version "0.5.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "ECOSolveR" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0973m346vakgddp92dzqlky0wa196hj341r9y7rz67bc2zl8jx2x"))))
|
||||
(properties `((upstream-name . "ECOSolveR")))
|
||||
(build-system r-build-system)
|
||||
(native-inputs (list r-knitr))
|
||||
(home-page "https://bnaras.github.io/ECOSolveR/")
|
||||
(synopsis "Embedded conic solver in R")
|
||||
(description
|
||||
"This package provides an R interface to the @dfn{Embedded COnic
|
||||
Solver} (ECOS), an efficient and robust C library for convex problems.
|
||||
Conic and equality constraints can be specified in addition to integer
|
||||
and boolean variable constraints for mixed-integer problems. This R
|
||||
interface is inspired by the Python interface and has similar calling
|
||||
conventions.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-ecp
|
||||
(package
|
||||
(name "r-ecp")
|
||||
|
|
Loading…
Reference in a new issue