mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add julia-multivariatepolynomials.
* gnu/packages/julia-xyz.scm (julia-multivariatepolynomials): New variable. Change-Id: Ib175d3779a5037841d77fe431e7c0221237daa10 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
250de2bfd9
commit
03d0cf300e
1 changed files with 36 additions and 0 deletions
|
@ -4369,6 +4369,42 @@ evaluated first but otherwise the order of evaluation of multiplications and
|
|||
additions is not changed.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-multivariatepolynomials
|
||||
(package
|
||||
(name "julia-multivariatepolynomials")
|
||||
(version "0.5.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaAlgebra/MultivariatePolynomials.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0dz5ap8jg3sgk67diak9xxzgzgx98kv7b0yrc4yzsnlpkiknw64q"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ; circular dependency with DynamicPolynomials
|
||||
#:julia-package-name "MultivariatePolynomials"
|
||||
#:julia-package-uuid "102ac46a-7ee4-5c85-9060-abc95bfdeaa3"
|
||||
#:julia-package-dependencies
|
||||
#~(list '("LinearAlgebra" . "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"))))
|
||||
(propagated-inputs
|
||||
(list julia-chainrulescore
|
||||
julia-datastructures
|
||||
julia-mutablearithmetics))
|
||||
(home-page "https://github.com/JuliaAlgebra/MultivariatePolynomials.jl")
|
||||
(synopsis "Package providing an interface for multivariate polynomials")
|
||||
(description
|
||||
"This package provides an interface for manipulating multivariate polynomials.
|
||||
Implementing algorithms on polynomials using this interface will allow the algorithm
|
||||
to work for all polynomials implenting this interface. The interface contains
|
||||
functions for accessing the coefficients, monomials, defining arithmetic operations
|
||||
on them, rational functions, division with remainder, calculus and differentiation,
|
||||
and evaluation and substitution.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-mutablearithmetics
|
||||
(package
|
||||
(name "julia-mutablearithmetics")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue