me
/
guix
Archived
1
0
Fork 0

gnu: Add r-genalg.

* gnu/packages/cran.scm (r-genalg): New variable.
master
Ricardo Wurmus 2019-12-13 23:09:40 +01:00
parent f18c0544f6
commit 270529f633
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -17500,3 +17500,23 @@ moderate-sized data sets. It performs discrete, real, and gentle boost under
both exponential and logistic loss on a given data set.") both exponential and logistic loss on a given data set.")
;; Any version of the GPL. ;; Any version of the GPL.
(license (list license:gpl2+ license:gpl3+)))) (license (list license:gpl2+ license:gpl3+))))
(define-public r-genalg
(package
(name "r-genalg")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "genalg" version))
(sha256
(base32
"1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
(properties `((upstream-name . "genalg")))
(build-system r-build-system)
(home-page "https://github.com/egonw/genalg")
(synopsis "R based genetic algorithm")
(description
"This package provides an R based genetic algorithm for binary and
floating point chromosomes.")
(license license:gpl2)))