diff options
author | brook <brook@pkgsrc.org> | 2019-08-09 15:43:47 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2019-08-09 15:43:47 +0000 |
commit | f328bacfc16e9d52bb65e2250fc104791dca3f66 (patch) | |
tree | 4464d9658edc2df1dd3f41f27f8fd6d3d34fdcf0 /math/Makefile | |
parent | 736581629613c4a9acc884bb3101d8c27a6261b5 (diff) | |
download | pkgsrc-f328bacfc16e9d52bb65e2250fc104791dca3f66.tar.gz |
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>.
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index bda0f569eac..74bfd3d88fe 100644 --- a/math/Makefile +++ b/math/Makefile @@ -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 |