mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add cddlib.
* gnu/packages/maths.scm (cddlib): New variable.
This commit is contained in:
parent
b146763a86
commit
53696f10c1
1 changed files with 25 additions and 0 deletions
|
@ -227,6 +227,31 @@ (define-public 4ti2
|
|||
integer programming problems and computes Markov bases for statistics.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public cddlib
|
||||
(package
|
||||
(name "cddlib")
|
||||
(version "0.94h")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "ftp://ftp.ifor.math.ethz.ch/pub/fukuda/cdd/cddlib-"
|
||||
(string-delete #\. version) ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1dasasscwfg793q8fwzgwf64xwj7w62yfvszpr8x8g38jka08vgy"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("gmp" ,gmp)))
|
||||
(home-page "https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html")
|
||||
(synopsis "Library for convex hulls and extreme rays of polyhedra")
|
||||
(description
|
||||
"The C-library cddlib implements the Double Description Method of
|
||||
Motzkin et al. for generating all vertices (i.e. extreme points) and extreme
|
||||
rays of a general convex polyhedron given by a system of linear inequalities
|
||||
in arbitrary dimension. It can also be used for the converse operation of
|
||||
computing convex hulls.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public arpack-ng
|
||||
(package
|
||||
(name "arpack-ng")
|
||||
|
|
Loading…
Reference in a new issue