- 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/
This commit is contained in:
TAKATSU Tomonari 2017-09-10 10:58:13 +00:00
parent b5794fa73f
commit 3cd5661b93
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449533
4 changed files with 29 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1505040137
SHA256 (DEoptimR_1.0-8.tar.gz) = 846911c1b2561a9fae73a8c60a21a5680963ebb0050af3c1f1147ae9a121e5ef
SIZE (DEoptimR_1.0-8.tar.gz) = 35401

View file

@ -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/