Skip to content

Commit 17e193d

Browse files
LAGraph 1.1.4, SPEX 3.2.1, and Example 1.8.2
1 parent b5ffa2b commit 17e193d

File tree

19 files changed

+100
-58
lines changed

19 files changed

+100
-58
lines changed

CMakeLists.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ include ( SuiteSparsePolicy )
111111

112112
if ( SUITESPARSE_USE_SYSTEM_GRAPHBLAS )
113113
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "graphblas" )
114-
find_package ( GraphBLAS 9.3.0 REQUIRED )
114+
find_package ( GraphBLAS 9.3.1 REQUIRED )
115115
else ( )
116116
if ( "lagraph" IN_LIST SUITESPARSE_ENABLE_PROJECTS )
117117
# LAGraph requires GraphBLAS.
@@ -137,7 +137,7 @@ endif ( )
137137

138138
if ( SUITESPARSE_USE_SYSTEM_UMFPACK )
139139
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "umfpack" )
140-
find_package ( UMFPACK 6.3.3 REQUIRED )
140+
find_package ( UMFPACK 6.3.4 REQUIRED )
141141
else ( )
142142
if ( "paru" IN_LIST SUITESPARSE_ENABLE_PROJECTS )
143143
# ParU requires UMFPACK.
@@ -168,7 +168,7 @@ endif ( )
168168

169169
if ( SUITESPARSE_USE_SYSTEM_AMD )
170170
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "amd" )
171-
find_package ( AMD 3.3.2 REQUIRED )
171+
find_package ( AMD 3.3.3 REQUIRED )
172172
else ( )
173173
if ( "cholmod" IN_LIST SUITESPARSE_ENABLE_PROJECTS
174174
OR "ldl" IN_LIST SUITESPARSE_ENABLE_PROJECTS
@@ -184,7 +184,7 @@ endif ( )
184184

185185
if ( SUITESPARSE_USE_SYSTEM_COLAMD )
186186
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "colamd" )
187-
find_package ( COLAMD 3.3.3 REQUIRED )
187+
find_package ( COLAMD 3.3.4 REQUIRED )
188188
else ( )
189189
if ( "cholmod" IN_LIST SUITESPARSE_ENABLE_PROJECTS
190190
OR "spex" IN_LIST SUITESPARSE_ENABLE_PROJECTS )
@@ -198,7 +198,7 @@ endif ( )
198198

199199
if ( SUITESPARSE_USE_SYSTEM_CAMD )
200200
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "camd" )
201-
find_package ( CAMD 3.3.2 REQUIRED )
201+
find_package ( CAMD 3.3.3 REQUIRED )
202202
else ( )
203203
if ( CHOLMOD_CAMD AND "cholmod" IN_LIST SUITESPARSE_ENABLE_PROJECTS )
204204
# CHOLMOD can optionally use CAMD.
@@ -211,7 +211,7 @@ endif ( )
211211

212212
if ( SUITESPARSE_USE_SYSTEM_CCOLAMD )
213213
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "ccolamd" )
214-
find_package ( CCOLAMD 3.3.3 REQUIRED )
214+
find_package ( CCOLAMD 3.3.4 REQUIRED )
215215
else ( )
216216
if ( CHOLMOD_CAMD AND "cholmod" IN_LIST SUITESPARSE_ENABLE_PROJECTS )
217217
# CHOLMOD can optionally use CCOLAMD.
@@ -224,7 +224,7 @@ endif ( )
224224

225225
if ( SUITESPARSE_USE_SYSTEM_SUITESPARSE_CONFIG )
226226
list ( REMOVE_ITEM SUITESPARSE_ENABLE_PROJECTS "suitesparse_config" )
227-
find_package ( SuiteSparse_config 7.8.0 REQUIRED )
227+
find_package ( SuiteSparse_config 7.8.2 REQUIRED )
228228
else ( )
229229
if ( "mongoose" IN_LIST SUITESPARSE_ENABLE_PROJECTS
230230
OR "amd" IN_LIST SUITESPARSE_ENABLE_PROJECTS

ChangeLog

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
Aug 20, 2024: version 7.8.2
2+
3+
* LAGraph 1.1.4: bug fix for LAGraph_MMWrite when matrix is dense
4+
* SPEX 3.2.1: release date revised, sync with primary SPEX repo
5+
* SuiteSparse_config, Example: modified to reflect the release of
6+
LAGraph 1.1.4 and SPEX 3.2.1
7+
* Package versions in this release: (* denotes a new version)
8+
SuiteSparse_config 7.8.2 *
9+
AMD 3.3.3
10+
BTF 2.3.2
11+
CAMD 3.3.3
12+
CCOLAMD 3.3.4
13+
CHOLMOD 5.3.0
14+
COLAMD 3.3.4
15+
CSparse 4.3.2
16+
CXSparse 4.4.1
17+
Example 1.8.2 *
18+
GraphBLAS 9.3.1
19+
KLU 2.3.4
20+
LDL 3.3.2
21+
LAGraph 1.1.4 *
22+
SuiteSparse_Mongoose 3.3.4
23+
ParU 0.2.0
24+
RBio 4.3.3
25+
SPEX 3.2.1 *
26+
SPQR 4.3.4
27+
UMFPACK 6.3.4
28+
129
Aug 12, 2024: version 7.8.1
230

331
* GraphBLAS 9.3.1: bug fix in creation of JIT package

Example/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ message ( STATUS "MY prefix path: ${CMAKE_PREFIX_PATH}" )
5353
#-------------------------------------------------------------------------------
5454

5555
# cmake inserts the date and version number into Include/my.h:
56-
set ( MY_DATE "Aug 12, 2024" )
56+
set ( MY_DATE "Aug 20, 2024" )
5757
set ( MY_VERSION_MAJOR 1 )
5858
set ( MY_VERSION_MINOR 8 )
59-
set ( MY_VERSION_PATCH 1 )
59+
set ( MY_VERSION_PATCH 2 )
6060

6161
message ( STATUS "Building MY library version: v"
6262
${MY_VERSION_MAJOR}.
@@ -87,7 +87,7 @@ project ( my
8787
#-------------------------------------------------------------------------------
8888

8989
# look for all SuiteSparse packages:
90-
find_package ( SuiteSparse_config 7.8.1 REQUIRED )
90+
find_package ( SuiteSparse_config 7.8.2 REQUIRED )
9191
find_package ( AMD 3.3.3 REQUIRED )
9292
find_package ( BTF 2.3.2 REQUIRED )
9393
find_package ( CAMD 3.3.3 REQUIRED )
@@ -99,11 +99,11 @@ find_package ( GraphBLAS 9.3.1 )
9999
find_package ( KLU 2.3.4 REQUIRED )
100100
find_package ( KLU_CHOLMOD 2.3.4 REQUIRED )
101101
find_package ( LDL 3.3.2 REQUIRED )
102-
find_package ( LAGraph 1.1.3 )
102+
find_package ( LAGraph 1.1.4 )
103103
find_package ( SuiteSparse_Mongoose 3.3.4 REQUIRED )
104104
find_package ( ParU 0.2.0 REQUIRED )
105105
find_package ( RBio 4.3.3 REQUIRED )
106-
find_package ( SPEX 3.2.0 REQUIRED ) # requires GMP and MPFR
106+
find_package ( SPEX 3.2.1 REQUIRED ) # requires GMP and MPFR
107107
find_package ( SPQR 4.3.4 REQUIRED )
108108
find_package ( UMFPACK 6.3.4 REQUIRED )
109109

Example/Include/my_internal.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
// SuiteSparse include files for C/C++:
1616
#include "SuiteSparse_config.h"
17-
#if !defined (SUITESPARSE__VERSION) || SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,1)
18-
#error "This library requires SuiteSparse_config 7.8.1 or later"
17+
#if !defined (SUITESPARSE__VERSION) || SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,2)
18+
#error "This library requires SuiteSparse_config 7.8.2 or later"
1919
#endif
2020

2121
#include "amd.h"
@@ -63,8 +63,8 @@
6363

6464
#if ! defined (NO_LAGRAPH)
6565
#include "LAGraph.h"
66-
#if SUITESPARSE__VERCODE(LAGRAPH_VERSION_MAJOR,LAGRAPH_VERSION_MINOR,LAGRAPH_VERSION_UPDATE) < SUITESPARSE__VERCODE(1,1,3)
67-
#error "This library requires LAGraph 1.1.3 or later"
66+
#if SUITESPARSE__VERCODE(LAGRAPH_VERSION_MAJOR,LAGRAPH_VERSION_MINOR,LAGRAPH_VERSION_UPDATE) < SUITESPARSE__VERCODE(1,1,4)
67+
#error "This library requires LAGraph 1.1.4 or later"
6868
#endif
6969
#endif
7070

@@ -84,8 +84,8 @@
8484
#endif
8585

8686
#include "SPEX.h"
87-
#if !defined (SPEX__VERSION) || SPEX__VERSION < SUITESPARSE__VERCODE(3,2,0)
88-
#error "This library requires SPEX 3.2.0 or later"
87+
#if !defined (SPEX__VERSION) || SPEX__VERSION < SUITESPARSE__VERCODE(3,2,1)
88+
#error "This library requires SPEX 3.2.1 or later"
8989
#endif
9090

9191
#include "SuiteSparseQR_C.h"

LAGraph/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
cmake_minimum_required ( VERSION 3.20 ) # LAGraph can be built stand-alone
4040

4141
# version of LAGraph
42-
set ( LAGraph_DATE "Mar 22, 2024" )
42+
set ( LAGraph_DATE "Aug 20, 2024" )
4343
set ( LAGraph_VERSION_MAJOR 1 CACHE STRING "" FORCE )
4444
set ( LAGraph_VERSION_MINOR 1 CACHE STRING "" FORCE )
45-
set ( LAGraph_VERSION_SUB 3 CACHE STRING "" FORCE )
45+
set ( LAGraph_VERSION_SUB 4 CACHE STRING "" FORCE )
4646

4747
message ( STATUS "Building LAGraph version: v"
4848
${LAGraph_VERSION_MAJOR}.

LAGraph/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Aug 20, 2024: version 1.1.4
2+
3+
* fix MMWrite when matrix is dense
4+
15
Mar 22, 2024: version 1.1.3
26

37
* minor updates to build system

LAGraph/data/comments_full.mtx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%%GraphBLAS type double
33
% comments for full.mtx
44
% this file was created by test_MMRead.c
5-
3 3 9
5+
3 3
66
.646
77
.709
88
.754

LAGraph/github_workflows/workflows/build.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
config:
16-
- {grb_version: 7.1.0, conda_grb_package_hash: h27087fc, conda_extension: tar.bz2}
17-
- {grb_version: 7.3.0, conda_grb_package_hash: h27087fc, conda_extension: tar.bz2}
18-
- {grb_version: 7.4.1, conda_grb_package_hash: hcb278e6, conda_extension: conda}
16+
- {grb_version: 9.1.0, conda_grb_package_hash: hd29ac08, conda_extension: conda}
1917
steps:
2018
- name: Checkout
2119
uses: actions/checkout@v2.0.0
@@ -36,15 +34,15 @@ jobs:
3634
cd ..
3735
- name: Build project
3836
run: |
39-
export GRAPHBLAS_INCLUDE_DIR=`pwd`/graphblas-binaries/include
37+
export GRAPHBLAS_INCLUDE_DIR=`pwd`/graphblas-binaries/include/suitesparse
4038
export GRAPHBLAS_LIBRARY=`pwd`/graphblas-binaries/lib/libgraphblas.so
4139
cd build
4240
cmake .. -DCOVERAGE=1 -DGRAPHBLAS_INCLUDE_DIR=${GRAPHBLAS_INCLUDE_DIR} -DGRAPHBLAS_LIBRARY=${GRAPHBLAS_LIBRARY}
4341
JOBS=2 make
4442
make test_coverage
4543
- name: Deploy
4644
uses: JamesIves/github-pages-deploy-action@4.1.1
47-
if: matrix.config.grb_version == '7.4.1' && github.event_name == 'push' && github.ref == 'refs/heads/stable'
45+
if: matrix.config.grb_version == '9.1.0' && github.event_name == 'push' && github.ref == 'refs/heads/stable'
4846
with:
4947
branch: gh-pages
5048
folder: build/test_coverage/
@@ -59,9 +57,7 @@ jobs:
5957
strategy:
6058
matrix:
6159
config:
62-
- {grb_version: 7.1.0, conda_grb_package_hash: h7881ed4, conda_extension: tar.bz2}
63-
- {grb_version: 7.3.0, conda_grb_package_hash: ha894c9a, conda_extension: tar.bz2}
64-
- {grb_version: 7.4.1, conda_grb_package_hash: ha894c9a, conda_extension: conda}
60+
- {grb_version: 9.1.0, conda_grb_package_hash: heb48c95, conda_extension: conda}
6561
steps:
6662
- name: Checkout
6763
uses: actions/checkout@v2.0.0
@@ -84,7 +80,7 @@ jobs:
8480
cd ..
8581
- name: Build project
8682
run: |
87-
export GRAPHBLAS_INCLUDE_DIR=`pwd`/graphblas-binaries/include
83+
export GRAPHBLAS_INCLUDE_DIR=`pwd`/graphblas-binaries/include/suitesparse
8884
export GRAPHBLAS_LIBRARY=`pwd`/graphblas-binaries/lib/libgraphblas.dylib
8985
# adding an extra line to the CMakeLists.txt file to locate the libomp instance installed by brew
9086
echo 'include_directories("/usr/local/opt/libomp/include")' | cat - CMakeLists.txt

LAGraph/include/LAGraph.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
// See also the LAGraph_Version utility method, which returns these values.
3838
// These definitions are derived from LAGraph/CMakeLists.txt.
3939

40-
#define LAGRAPH_DATE "Mar 22, 2024"
40+
#define LAGRAPH_DATE "Aug 20, 2024"
4141
#define LAGRAPH_VERSION_MAJOR 1
4242
#define LAGRAPH_VERSION_MINOR 1
43-
#define LAGRAPH_VERSION_UPDATE 3
43+
#define LAGRAPH_VERSION_UPDATE 4
4444

4545
//==============================================================================
4646
// include files and helper macros

LAGraph/src/utility/LAGraph_MMWrite.c

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,18 @@ int LAGraph_MMWrite
459459
nvals_to_print = nself_edges + (nvals - nself_edges) / 2 ;
460460
}
461461

462-
FPRINTF (f, "%" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
463-
nrows, ncols, nvals_to_print) ;
462+
if (MM_fmt == MM_array)
463+
{
464+
// write `nrows ncols` if the array format is used
465+
FPRINTF (f, "%" PRIu64 " %" PRIu64 "\n",
466+
nrows, ncols) ;
467+
}
468+
else
469+
{
470+
// otherwise write `nrows ncols nvals` for the coordinate format
471+
FPRINTF (f, "%" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
472+
nrows, ncols, nvals_to_print) ;
473+
}
464474

465475
if (nvals_to_print == 0)
466476
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SuiteSparse: A Suite of Sparse matrix packages at http://suitesparse.com
33
-----------------------------------------------------------------------------
44

5-
Aug 12, 2024, SuiteSparse VERSION 7.8.1
5+
Aug 20, 2024, SuiteSparse VERSION 7.8.2
66

77
SuiteSparse is a set of sparse-matrix-related packages written or co-authored
88
by Tim Davis, available at https://github.com/DrTimothyAldenDavis/SuiteSparse .

SPEX/CMakeLists.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
cmake_minimum_required ( VERSION 3.22 )
1515

16-
set ( SPEX_DATE "July 2, 2024" )
16+
set ( SPEX_DATE "Aug 20, 2024" )
1717
set ( SPEX_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1818
set ( SPEX_VERSION_MINOR 2 CACHE STRING "" FORCE )
19-
set ( SPEX_VERSION_SUB 0 CACHE STRING "" FORCE )
19+
set ( SPEX_VERSION_SUB 1 CACHE STRING "" FORCE )
2020

2121
message ( STATUS "Building SPEX version: v"
2222
${SPEX_VERSION_MAJOR}.
@@ -74,22 +74,22 @@ endif ( )
7474
#-------------------------------------------------------------------------------
7575

7676
if ( NOT SUITESPARSE_ROOT_CMAKELISTS )
77-
find_package ( SuiteSparse_config 7.8.0
77+
find_package ( SuiteSparse_config 7.8.2
7878
PATHS ${CMAKE_SOURCE_DIR}/../SuiteSparse_config/build NO_DEFAULT_PATH )
7979
if ( NOT TARGET SuiteSparse::SuiteSparseConfig )
80-
find_package ( SuiteSparse_config 7.8.0 REQUIRED )
80+
find_package ( SuiteSparse_config 7.8.2 REQUIRED )
8181
endif ( )
8282

83-
find_package ( AMD 3.3.2
83+
find_package ( AMD 3.3.3
8484
PATHS ${CMAKE_SOURCE_DIR}/../AMD/build NO_DEFAULT_PATH )
8585
if ( NOT TARGET SuiteSparse::AMD )
86-
find_package ( AMD 3.3.2 REQUIRED )
86+
find_package ( AMD 3.3.3 REQUIRED )
8787
endif ( )
8888

89-
find_package ( COLAMD 3.3.3
89+
find_package ( COLAMD 3.3.4
9090
PATHS ${CMAKE_SOURCE_DIR}/../COLAMD/build NO_DEFAULT_PATH )
9191
if ( NOT TARGET SuiteSparse::COLAMD )
92-
find_package ( COLAMD 3.3.3 REQUIRED )
92+
find_package ( COLAMD 3.3.4 REQUIRED )
9393
endif ( )
9494
endif ( )
9595

SPEX/Config/SPEX.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@
121121

122122
#define SPEX__VERSION SUITESPARSE__VERCODE(@SPEX_VERSION_MAJOR@,@SPEX_VERSION_MINOR@,@SPEX_VERSION_SUB@)
123123
#if !defined (SUITESPARSE__VERSION) || \
124-
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,0))
125-
#error "SPEX @SPEX_VERSION_MAJOR@.@SPEX_VERSION_MINOR@.@SPEX_VERSION_SUB@ requires SuiteSparse_config 7.8.0 or later"
124+
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,2))
125+
#error "SPEX @SPEX_VERSION_MAJOR@.@SPEX_VERSION_MINOR@.@SPEX_VERSION_SUB@ requires SuiteSparse_config 7.8.2 or later"
126126
#endif
127127

128128
#if defined ( __cplusplus )

SPEX/Doc/ChangeLog

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
June 20, 2024: version 3.2.0
1+
Aug 20, 2024: version 3.2.1
2+
3+
* Python interface: bug fix for string length, and Python Inf
4+
5+
July 2, 2024: version 3.2.0
26

37
* added SPEX_ldl_* methods: allowing D to have negative diagonal entries;
48
SPEX_cholesky_* methods revised to require D to have positive entries.

SPEX/Doc/SPEX_UserGuide.pdf

24.1 KB
Binary file not shown.

SPEX/Doc/SPEX_version.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% version of SuiteSparse/SPEX
2-
VERSION 3.2.0, July 2, 2024
2+
VERSION 3.2.1, Aug 20, 2024

SPEX/Include/SPEX.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
//------------------------------------------------------------------------------
107107

108108
// Current version of the code
109-
#define SPEX_DATE "July 2, 2024"
110-
#define SPEX_VERSION_STRING "3.2.0"
109+
#define SPEX_DATE "Aug 20, 2024"
110+
#define SPEX_VERSION_STRING "3.2.1"
111111
#define SPEX_VERSION_MAJOR 3
112112
#define SPEX_VERSION_MINOR 2
113-
#define SPEX_VERSION_SUB 0
113+
#define SPEX_VERSION_SUB 1
114114

115115
#define SPEX_VERSION_NUMBER(major,minor,sub) \
116116
(((major)*1000ULL + (minor))*1000ULL + (sub))
@@ -119,10 +119,10 @@
119119
SPEX_VERSION_MINOR, \
120120
SPEX_VERSION_SUB)
121121

122-
#define SPEX__VERSION SUITESPARSE__VERCODE(3,2,0)
122+
#define SPEX__VERSION SUITESPARSE__VERCODE(3,2,1)
123123
#if !defined (SUITESPARSE__VERSION) || \
124-
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,0))
125-
#error "SPEX 3.2.0 requires SuiteSparse_config 7.8.0 or later"
124+
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,2))
125+
#error "SPEX 3.2.1 requires SuiteSparse_config 7.8.2 or later"
126126
#endif
127127

128128
#if defined ( __cplusplus )

SuiteSparse_config/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
cmake_minimum_required ( VERSION 3.22 )
1616

1717
# version of both SuiteSparse and SuiteSparse_config
18-
set ( SUITESPARSE_DATE "Aug 12, 2024" )
18+
set ( SUITESPARSE_DATE "Aug 20, 2024" )
1919
set ( SUITESPARSE_VERSION_MAJOR 7 )
2020
set ( SUITESPARSE_VERSION_MINOR 8 )
21-
set ( SUITESPARSE_VERSION_SUB 1 )
21+
set ( SUITESPARSE_VERSION_SUB 2 )
2222
set ( SUITESPARSE_CONFIG_VERSION_MAJOR ${SUITESPARSE_VERSION_MAJOR} CACHE STRING "" FORCE )
2323
set ( SUITESPARSE_CONFIG_VERSION_MINOR ${SUITESPARSE_VERSION_MINOR} CACHE STRING "" FORCE )
2424
set ( SUITESPARSE_CONFIG_VERSION_PATCH ${SUITESPARSE_VERSION_SUB} CACHE STRING "" FORCE )

0 commit comments

Comments
 (0)