R-DEoptimR: initial commit
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>.
This commit is contained in:
parent
fa6d3090f2
commit
17154fd6bb
5 changed files with 31 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES-2019,v 1.3325 2019/08/09 15:42:02 brook Exp $
|
||||
$NetBSD: CHANGES-2019,v 1.3326 2019/08/09 15:43:47 brook Exp $
|
||||
|
||||
Changes to the packages collection and infrastructure in 2019:
|
||||
|
||||
|
@ -5449,3 +5449,4 @@ Changes to the packages collection and infrastructure in 2019:
|
|||
Added graphics/R-latex2exp version 0.4.0 [brook 2019-08-09]
|
||||
Added finance/R-bayesm version 3.1.3 [brook 2019-08-09]
|
||||
Added math/R-energy version 1.7.6 [brook 2019-08-09]
|
||||
Added math/R-DEoptimR version 1.0.8 [brook 2019-08-09]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.427 2019/08/09 15:42:02 brook Exp $
|
||||
# $NetBSD: Makefile,v 1.428 2019/08/09 15:43:47 brook Exp $
|
||||
|
||||
COMMENT= Mathematics
|
||||
|
||||
|
@ -6,6 +6,7 @@ SUBDIR+= R
|
|||
SUBDIR+= R-CGIwithR
|
||||
SUBDIR+= R-DAAG
|
||||
SUBDIR+= R-DBI
|
||||
SUBDIR+= R-DEoptimR
|
||||
SUBDIR+= R-FNN
|
||||
SUBDIR+= R-Formula
|
||||
SUBDIR+= R-GRASS
|
||||
|
|
7
math/R-DEoptimR/DESCR
Normal file
7
math/R-DEoptimR/DESCR
Normal file
|
@ -0,0 +1,7 @@
|
|||
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>.
|
14
math/R-DEoptimR/Makefile
Normal file
14
math/R-DEoptimR/Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
# $NetBSD: Makefile,v 1.1 2019/08/09 15:43:47 brook Exp $
|
||||
|
||||
R_PKGNAME= DEoptimR
|
||||
R_PKGVER= 1.0-8
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
COMMENT= Differential evolution optimization in pure R
|
||||
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../math/R/Makefile.extension"
|
||||
.include "../../mk/bsd.pkg.mk"
|
6
math/R-DEoptimR/distinfo
Normal file
6
math/R-DEoptimR/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2019/08/09 15:43:48 brook Exp $
|
||||
|
||||
SHA1 (R/DEoptimR_1.0-8.tar.gz) = 3974d3642d4426fa2ee2093c13cae7aeba2dd70f
|
||||
RMD160 (R/DEoptimR_1.0-8.tar.gz) = 7d8672d59375f1fc3b758032bd2920287829d787
|
||||
SHA512 (R/DEoptimR_1.0-8.tar.gz) = d1ff9e4b12619df383cf01da48b084e5f88c5f33a7d943c1625c25345ecc6913a0879c54542d8507c7ec261a29bac1e18a913b9efb46775f259cf48481814515
|
||||
Size (R/DEoptimR_1.0-8.tar.gz) = 35401 bytes
|
Loading…
Reference in a new issue