diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2017-09-10 18:58:13 +0800 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2017-09-10 18:58:13 +0800 |
commit | 3cd5661b9389652a73d511b02b617bd17fc87cbf (patch) | |
tree | 8ca7a5a1fa0306b23329b2e2e85f2fa16503fd1e /math | |
parent | b5794fa73f2d8edbc86bc6eee5ccb7fa84f3654c (diff) | |
download | freebsd-ports-gnome-3cd5661b9389652a73d511b02b617bd17fc87cbf.tar.gz freebsd-ports-gnome-3cd5661b9389652a73d511b02b617bd17fc87cbf.tar.zst freebsd-ports-gnome-3cd5661b9389652a73d511b02b617bd17fc87cbf.zip |
- Add new port: math/R-cran-DEoptimR
Differential Evolution (DE) stochastic algorithms for global
optimization of problems with and without constraints. The aim is
to curate a collection of its state-of-the-art variants that (1)
do not sacrifice simplicity of design, (2) are essentially tuning-free,
and (3) can be efficiently implemented directly in the R language.
Currently, it only provides an implementation of the 'jDE' algorithm
by Brest et al. (2006) <doi:10.1109/TEVC.2006.872133>.
WWW: https://cran.r-project.org/web/packages/DEoptimR/
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-DEoptimR/Makefile | 16 | ||||
-rw-r--r-- | math/R-cran-DEoptimR/distinfo | 3 | ||||
-rw-r--r-- | math/R-cran-DEoptimR/pkg-descr | 9 |
4 files changed, 29 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 44e993fb21d7..a8a6802ef388 100644 --- a/math/Makefile +++ b/math/Makefile @@ -36,6 +36,7 @@ SUBDIR += R-cran-CVST SUBDIR += R-cran-deldir SUBDIR += R-cran-demRed + SUBDIR += R-cran-DEoptimR SUBDIR += R-cran-dlmodeler SUBDIR += R-cran-dplyr SUBDIR += R-cran-expm diff --git a/math/R-cran-DEoptimR/Makefile b/math/R-cran-DEoptimR/Makefile new file mode 100644 index 000000000000..8e63a76fc818 --- /dev/null +++ b/math/R-cran-DEoptimR/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= DEoptimR +DISTVERSION= 1.0-8 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Differential Evolution Optimization in Pure R + +LICENSE= GPLv2+ + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-DEoptimR/distinfo b/math/R-cran-DEoptimR/distinfo new file mode 100644 index 000000000000..00181cc21341 --- /dev/null +++ b/math/R-cran-DEoptimR/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505040137 +SHA256 (DEoptimR_1.0-8.tar.gz) = 846911c1b2561a9fae73a8c60a21a5680963ebb0050af3c1f1147ae9a121e5ef +SIZE (DEoptimR_1.0-8.tar.gz) = 35401 diff --git a/math/R-cran-DEoptimR/pkg-descr b/math/R-cran-DEoptimR/pkg-descr new file mode 100644 index 000000000000..d5352b36eb30 --- /dev/null +++ b/math/R-cran-DEoptimR/pkg-descr @@ -0,0 +1,9 @@ +Differential Evolution (DE) stochastic algorithms for global +optimization of problems with and without constraints. The aim is +to curate a collection of its state-of-the-art variants that (1) +do not sacrifice simplicity of design, (2) are essentially tuning-free, +and (3) can be efficiently implemented directly in the R language. +Currently, it only provides an implementation of the 'jDE' algorithm +by Brest et al. (2006) <doi:10.1109/TEVC.2006.872133>. + +WWW: https://cran.r-project.org/web/packages/DEoptimR/ |