diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-04-20 09:48:33 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-28 09:43:31 +0200 |
| commit | 9be2b6581663eeb51130b3ebc2e9a6b37f04ad7d (patch) | |
| tree | 8c70527a825b04815c60081dc59c556e4f17831b | |
| parent | 14995420012596510b8b259d0d84bec8e93ce5ed (diff) | |
gnu: Add r-roi-plugin-glpk.
* gnu/packages/cran.scm (r-roi-plugin-glpk): New variable.
Change-Id: I7494d76df73a9c367e8897362acea174bb1629b4
| -rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 84761377e8..67e2401cc1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8351,6 +8351,28 @@ package with the Embedded Conic Solver (ECOS) for solving conic optimization problems.") (license license:gpl3))) +(define-public r-roi-plugin-glpk + (package + (name "r-roi-plugin-glpk") + (version "1.0-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "ROI.plugin.glpk" version)) + (sha256 + (base32 "0i5l0k5mk2xp2gdvpmlgxjycvzmgc83rkind68ab4x1d4bab0qdk")))) + (properties `((upstream-name . "ROI.plugin.glpk"))) + (build-system r-build-system) + (propagated-inputs (list r-rglpk r-roi)) + (home-page "http://roi.r-forge.r-project.org/") + (synopsis "ROI plug-in GLPK") + (description + "This package enhances the @dfn{R Optimization Infrastructure} (ROI) +package by registering the GLPK solver. It allows for solving mixed integer +linear programming (MILP) problems as well as all variants/combinations of +LP and IP.") + (license license:gpl3))) + (define-public r-roi-plugin-lpsolve (package (name "r-roi-plugin-lpsolve") |
