aboutsummaryrefslogtreecommitdiff
path: root/math/R-cran-DEoptimR
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2017-09-10 10:58:13 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2017-09-10 10:58:13 +0000
commit3cd5661b9389652a73d511b02b617bd17fc87cbf (patch)
tree8ca7a5a1fa0306b23329b2e2e85f2fa16503fd1e /math/R-cran-DEoptimR
parentb5794fa73f2d8edbc86bc6eee5ccb7fa84f3654c (diff)
downloadports-3cd5661b9389652a73d511b02b617bd17fc87cbf.tar.gz
ports-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/
Notes
Notes: svn path=/head/; revision=449533
Diffstat (limited to 'math/R-cran-DEoptimR')
-rw-r--r--math/R-cran-DEoptimR/Makefile16
-rw-r--r--math/R-cran-DEoptimR/distinfo3
-rw-r--r--math/R-cran-DEoptimR/pkg-descr9
3 files changed, 28 insertions, 0 deletions
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/