diff options
| author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2025-01-20 11:37:12 +0000 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 22:06:56 +0100 |
| commit | 0d54c97bc38b5e23a7f0a4853dad5bcaf68d3991 (patch) | |
| tree | 98154d0e77855a901d37116d77e6cb0bef829e5b /gnu | |
| parent | 69d657f9c4ffa59d708356baacbefafb58f09308 (diff) | |
gnu: Add r-deoptim.
* gnu/packages/cran.scm (r-deoptim): New variable.
Change-Id: I0db4f2aa6707ffa99c2e57f616689dcd3a296236
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 973345063a0..d727dec68ae 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5643,6 +5643,29 @@ that.") regression and Passing-Bablock regression functions.") (license license:lgpl2.0+))) +(define-public r-deoptim + (package + (name "r-deoptim") + (version "2.2-8") + (source + (origin + (method url-fetch) + (uri (cran-uri "DEoptim" version)) + (sha256 + (base32 "0k7mvf7j8y1sqv8zpiwkw4xcmgki37drkxjijrsmmhkfybfan7k3")))) + (properties `((upstream-name . "DEoptim"))) + (build-system r-build-system) + (propagated-inputs (list r-parallelly)) + (home-page "https://github.com/ArdiaD/DEoptim") + (synopsis "Global optimization by differential evolution") + (description + "This package implements the Differential Evolution algorithm. +This algorithm is used for the global optimization of a real-valued function +of a real-valued parameter vector. The implementation of +@code{DifferentialEvolution} in DEoptim interfaces with C code for +efficiency.") + (license license:gpl2+))) + (define-public r-depmixs4 (package (name "r-depmixs4") |
