guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add r-abcoptim.


From: Leo Famulari
Subject: 01/02: gnu: Add r-abcoptim.
Date: Wed, 29 Aug 2018 14:14:02 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 9e21f2170ec36f04097cee6ee76ba14c888cc81c
Author: pimi <address@hidden>
Date:   Tue Aug 28 22:32:44 2018 +0200

    gnu: Add r-abcoptim.
    
    gnu/packages/cran.scm (r-abcoptim): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 76f0359..016d1b1 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -4963,3 +4963,28 @@ and make comparisons between different methodologies 
straightforward.")
      "This package implements various measures of information theory based on
 several entropy estimators.")
     (license license:gpl3+)))
+
+(define-public r-abcoptim
+  (package
+    (name "r-abcoptim")
+    (version "0.15.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ABCoptim" version))
+       (sha256
+        (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
+    (properties `((upstream-name . "ABCoptim")))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-rcpp" ,r-rcpp)))
+    (home-page "https://github.com/gvegayon/ABCoptim/";)
+    (synopsis "Optimization of Artificial Bee Colony algorithm")
+    (description
+     "Artificial Bee Colony (ABC) is one of the most recently defined 
algorithms by Dervis
+Karaboga in 2005, motivated by the intelligent behavior of honey bees.  It is 
as
+simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
+algorithms, and uses only common control parameters such as colony size and
+maximum cycle number.  The @code{r-abcoptim} implements the Artificial bee
+colony optimization algorithm 
@url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
+  This version is a work-in-progress and is written in R code.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]