mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add r-minqa.
* gnu/packages/statistics.scm (r-minqa): New variable. Signed-off-by: Ben Woodcroft <donttrustben@gmail.com>
This commit is contained in:
parent
1dbe3a8db0
commit
0392f82fd5
1 changed files with 23 additions and 0 deletions
|
@ -4442,3 +4442,26 @@ (define-public r-fnn
|
|||
search algorithms and related applications including KNN classification,
|
||||
regression and information measures.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-minqa
|
||||
(package
|
||||
(name "r-minqa")
|
||||
(version "1.2.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "minqa" version))
|
||||
(sha256
|
||||
(base32
|
||||
"036drja6xz7awja9iwb76x91415p26fb0jmg7y7v0p65m6j978fg"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-rcpp" ,r-rcpp)))
|
||||
(inputs
|
||||
`(("gfortran" ,gfortran)))
|
||||
(home-page "http://optimizer.r-forge.r-project.org")
|
||||
(synopsis "Derivative-free optimization algorithms by quadratic approximation")
|
||||
(description
|
||||
"This package provides a derivative-free optimization by quadratic approximation
|
||||
based on an interface to Fortran implementations by M. J. D. Powell.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue