- 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>
This commit is contained in:
TAKATSU Tomonari 2012-12-25 11:21:13 +00:00
parent 664c8dd5b3
commit abf08a76c2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=309473
4 changed files with 26 additions and 0 deletions

View file

@ -28,6 +28,7 @@
SUBDIR += R-cran-mvtnorm SUBDIR += R-cran-mvtnorm
SUBDIR += R-cran-nnls SUBDIR += R-cran-nnls
SUBDIR += R-cran-psych SUBDIR += R-cran-psych
SUBDIR += R-cran-quadprog
SUBDIR += R-cran-sandwich SUBDIR += R-cran-sandwich
SUBDIR += R-cran-sm SUBDIR += R-cran-sm
SUBDIR += R-cran-sp SUBDIR += R-cran-sp

View file

@ -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>

View file

@ -0,0 +1,2 @@
SHA256 (quadprog_1.5-4.tar.gz) = b596941afb3809a4f7fb7a635c78e64f9dbbce80c7f053825765880e79fe4ea0
SIZE (quadprog_1.5-4.tar.gz) = 34653

View file

@ -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/