mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add julia-quadgk.
* gnu/packages/julia-xyz.scm (julia-quadgk): New variable.
This commit is contained in:
parent
b28cd884b8
commit
8733d2c235
1 changed files with 25 additions and 0 deletions
|
@ -2985,6 +2985,31 @@ (define-public julia-prettytables
|
||||||
human-readable format.")
|
human-readable format.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-quadgk
|
||||||
|
(package
|
||||||
|
(name "julia-quadgk")
|
||||||
|
(version "2.4.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaMath/QuadGK.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1hy0629yai6xflgxaflk9764lzr1lzhlghimxk1aqi212q9c6n33"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-datastructures" ,julia-datastructures)))
|
||||||
|
(home-page "https://github.com/JuliaMath/QuadGK.jl")
|
||||||
|
(synopsis "Adaptive 1d numerical Gauss–Kronrod integration")
|
||||||
|
(description "This package provides support for one-dimensional numerical
|
||||||
|
integration in Julia using adaptive Gauss-Kronrod quadrature. The code was
|
||||||
|
originally part of Base Julia. It supports integration of arbitrary numeric
|
||||||
|
types, including arbitrary precision (@code{BigFloat}), and even integration of
|
||||||
|
arbitrary normed vector spaces (e.g. matrix-valued integrands).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-quadmath
|
(define-public julia-quadmath
|
||||||
(package
|
(package
|
||||||
(name "julia-quadmath")
|
(name "julia-quadmath")
|
||||||
|
|
Loading…
Reference in a new issue