mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
3cd5661b93
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/
17 lines
305 B
Makefile
17 lines
305 B
Makefile
# 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>
|