diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2012-12-25 11:21:13 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2012-12-25 11:21:13 +0000 |
commit | abf08a76c246cea96e657616ca838d76116ed79a (patch) | |
tree | 0f6b2f4c0f6f7b3c3707544526495aeff551011d /math/R-cran-quadprog | |
parent | 664c8dd5b3706974f24ff8ea020e2321693e72bf (diff) |
- Add a new port: math/R-cran-quadprog
This routine implements the dual method of Goldfarb and Idnani
(1982, 1983) for solving quadratic programming problems of the form
min(?dT b + 1/2bT Db) with the constraints AT b >= b0.
WWW: http://cran.r-project.org/web/packages/quadprog/
PR: ports/172298 (based on)
Submitted by: David Naylor <naylor.b.david_AT_gmail_DOT_com>
Notes
Notes:
svn path=/head/; revision=309473
Diffstat (limited to 'math/R-cran-quadprog')
-rw-r--r-- | math/R-cran-quadprog/Makefile | 18 | ||||
-rw-r--r-- | math/R-cran-quadprog/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-quadprog/pkg-descr | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/math/R-cran-quadprog/Makefile b/math/R-cran-quadprog/Makefile new file mode 100644 index 000000000000..592288fe6980 --- /dev/null +++ b/math/R-cran-quadprog/Makefile @@ -0,0 +1,18 @@ +# Created by: David Naylor <naylor.b.david@gmail.com> +# $FreeBSD$ + +PORTNAME= quadprog +DISTVERSION= 1.5-4 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= naylor.b.david@gmail.com +COMMENT= Functions to solve Quadratic Programming Problems + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/math/R-cran-quadprog/distinfo b/math/R-cran-quadprog/distinfo new file mode 100644 index 000000000000..cf5d93182aa9 --- /dev/null +++ b/math/R-cran-quadprog/distinfo @@ -0,0 +1,2 @@ +SHA256 (quadprog_1.5-4.tar.gz) = b596941afb3809a4f7fb7a635c78e64f9dbbce80c7f053825765880e79fe4ea0 +SIZE (quadprog_1.5-4.tar.gz) = 34653 diff --git a/math/R-cran-quadprog/pkg-descr b/math/R-cran-quadprog/pkg-descr new file mode 100644 index 000000000000..c7b8e9aaee51 --- /dev/null +++ b/math/R-cran-quadprog/pkg-descr @@ -0,0 +1,5 @@ +This routine implements the dual method of Goldfarb and Idnani +(1982, 1983) for solving quadratic programming problems of the form +min(?dT b + 1/2bT Db) with the constraints AT b >= b0. + +WWW: http://cran.r-project.org/web/packages/quadprog/ |