This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 0d54c97bc3 gnu: Add r-deoptim.
0d54c97bc3 is described below
commit 0d54c97bc38b5e23a7f0a4853dad5bcaf68d3991
Author: Navid Afkhami <[email protected]>
AuthorDate: Mon Jan 20 11:37:12 2025 +0000
gnu: Add r-deoptim.
* gnu/packages/cran.scm (r-deoptim): New variable.
Change-Id: I0db4f2aa6707ffa99c2e57f616689dcd3a296236
Signed-off-by: Ricardo Wurmus <[email protected]>
---
gnu/packages/cran.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 973345063a..d727dec68a 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")