Date: Sun, 10 Sep 2017 10:58:13 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449533 - in head/math: . R-cran-DEoptimR Message-ID: <201709101058.v8AAwDwP059053@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sun Sep 10 10:58:13 2017 New Revision: 449533 URL: https://svnweb.freebsd.org/changeset/ports/449533 Log: - 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/ Added: head/math/R-cran-DEoptimR/ head/math/R-cran-DEoptimR/Makefile (contents, props changed) head/math/R-cran-DEoptimR/distinfo (contents, props changed) head/math/R-cran-DEoptimR/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 10:33:56 2017 (r449532) +++ head/math/Makefile Sun Sep 10 10:58:13 2017 (r449533) @@ -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 Added: head/math/R-cran-DEoptimR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/Makefile Sun Sep 10 10:58:13 2017 (r449533) @@ -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> Added: head/math/R-cran-DEoptimR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/distinfo Sun Sep 10 10:58:13 2017 (r449533) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505040137 +SHA256 (DEoptimR_1.0-8.tar.gz) = 846911c1b2561a9fae73a8c60a21a5680963ebb0050af3c1f1147ae9a121e5ef +SIZE (DEoptimR_1.0-8.tar.gz) = 35401 Added: head/math/R-cran-DEoptimR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DEoptimR/pkg-descr Sun Sep 10 10:58:13 2017 (r449533) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709101058.v8AAwDwP059053>