[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66129] [PATCH v3 07/20] gnu: Add suitesparse-ccolamd.
From: |
David Elsing |
Subject: |
[bug#66129] [PATCH v3 07/20] gnu: Add suitesparse-ccolamd. |
Date: |
Thu, 5 Oct 2023 21:34:50 +0000 |
* gnu/packages/maths.scm (suitesparse-ccolamd): New variable.
---
gnu/packages/maths.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index fade383ca7..30d6351a0a 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5279,6 +5279,40 @@ (define-public suitesparse-colamd
matrix with which the LU factorization becomes sparser.")
(license license:bsd-3)))
+(define-public suitesparse-ccolamd
+ (package
+ (name "suitesparse-ccolamd")
+ (version "3.2.0")
+ (source suitesparse-source)
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "CCOLAMD")))
+ (add-after 'chdir 'set-cmake-module-path
+ (lambda _
+ (substitute* "CMakeLists.txt"
+ (("set.*CMAKE_MODULE_PATH.*")
+ (string-append "set(CMAKE_MODULE_PATH "
+ #$suitesparse-config
"/lib/cmake/SuiteSparse)\n"
+ "set(DUMMY\n")))))
+ (replace 'install-license-files
+ (lambda _
+ (install-file "../CCOLAMD/Doc/License.txt"
+ (string-append #$output "/share/doc/"
+ #$name "-" #$version)))))))
+ (inputs (list suitesparse-config))
+ (home-page "https://people.engr.tamu.edu/davis/suitesparse.html")
+ (synopsis "Column Approximate Minimum Degree Ordering with constraints")
+ (description "CCOLAMD is library for computing a permutation vector for a
+matrix with which the LU factorization becomes sparser. It is a variant of
+COLAMD which has the the option to apply constraints to the ordering.")
+ (license license:bsd-3)))
+
(define-public suitesparse
(package
(name "suitesparse")
--
2.41.0
- [bug#66129] [PATCH v3 03/20] gnu: Add suitesparse-amd., (continued)
- [bug#66129] [PATCH v3 01/20] gnu: suitesparse: Tweak description., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 09/20] gnu: Add metis-5.2., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 04/20] gnu: Add suitesparse-btf., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 12/20] gnu: Add suitesparse-cholmod., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 06/20] gnu: Add suitesparse-colamd., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 05/20] gnu: Add suitesparse-camd., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 07/20] gnu: Add suitesparse-ccolamd.,
David Elsing <=
- [bug#66129] [PATCH v3 15/20] gnu: Add suitesparse-ldl., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 08/20] gnu: Add gklib., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 17/20] gnu: Add suitesparse-mongoose., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 20/20] gnu: Add suitesparse-umfpack., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 13/20] gnu: Add suitesparse-cxsparse., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 11/20] gnu: Add metis-suitesparse., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 18/20] gnu: Add suitesparse-spex., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 10/20] gnu: Add gklib-suitesparse., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 14/20] gnu: Add suitesparse-klu., David Elsing, 2023/10/05
- [bug#66129] [PATCH v3 19/20] gnu: Add suitesparse-spqr., David Elsing, 2023/10/05