Skip to content

Commit 369ac0c

Browse files
CHOLMOD 5.3.1: reduce pedantic compiler warnings
1 parent bafbd06 commit 369ac0c

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

CHOLMOD/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
# cmake 3.22 is required to find the BLAS/LAPACK
1313
cmake_minimum_required ( VERSION 3.22 )
1414

15-
set ( CHOLMOD_DATE "June 20, 2024" )
15+
set ( CHOLMOD_DATE "Feb 20, 2025" )
1616
set ( CHOLMOD_VERSION_MAJOR 5 CACHE STRING "" FORCE )
1717
set ( CHOLMOD_VERSION_MINOR 3 CACHE STRING "" FORCE )
18-
set ( CHOLMOD_VERSION_SUB 0 CACHE STRING "" FORCE )
18+
set ( CHOLMOD_VERSION_SUB 1 CACHE STRING "" FORCE )
1919

2020
message ( STATUS "Building CHOLMOD version: v"
2121
${CHOLMOD_VERSION_MAJOR}.

CHOLMOD/Config/cholmod.h.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ int cholmod_l_version (int version [3]) ;
309309

310310
#define CHOLMOD__VERSION SUITESPARSE__VERCODE(@CHOLMOD_VERSION_MAJOR@,@CHOLMOD_VERSION_MINOR@,@CHOLMOD_VERSION_SUB@)
311311
#if !defined (SUITESPARSE__VERSION) || \
312-
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,0))
313-
#error "CHOLMOD @CHOLMOD_VERSION_MAJOR@.@CHOLMOD_VERSION_MINOR@.@CHOLMOD_VERSION_SUB@ requires SuiteSparse_config 7.8.0 or later"
312+
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,9,0))
313+
#error "CHOLMOD @CHOLMOD_VERSION_MAJOR@.@CHOLMOD_VERSION_MINOR@.@CHOLMOD_VERSION_SUB@ requires SuiteSparse_config 7.9.0 or later"
314314
#endif
315315

316316
//------------------------------------------------------------------------------

CHOLMOD/Doc/CHOLMOD_UserGuide.pdf

23.4 KB
Binary file not shown.

CHOLMOD/Doc/ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Feb 20, 2025: version 5.3.1
2+
3+
* minor changes: removing compiler warnings
4+
15
June 20, 2024: version 5.3.0
26

37
* added cholmod_query: to deterimine at run time which modules

CHOLMOD/Doc/cholmod_version.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% version of SuiteSparse/CHOLMOD
2-
\date{VERSION 5.3.0, June 20, 2024}
2+
\date{VERSION 5.3.1, Feb 20, 2025}

CHOLMOD/Include/cholmod.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@
246246
// version control
247247
//------------------------------------------------------------------------------
248248

249-
#define CHOLMOD_DATE "June 20, 2024"
249+
#define CHOLMOD_DATE "Feb 20, 2025"
250250
#define CHOLMOD_MAIN_VERSION 5
251251
#define CHOLMOD_SUB_VERSION 3
252-
#define CHOLMOD_SUBSUB_VERSION 0
252+
#define CHOLMOD_SUBSUB_VERSION 1
253253

254254
#define CHOLMOD_VER_CODE(main,sub) SUITESPARSE_VER_CODE(main,sub)
255255
#define CHOLMOD_VERSION CHOLMOD_VER_CODE(5,3)
@@ -307,10 +307,10 @@ int cholmod_l_version (int version [3]) ;
307307

308308
#include "SuiteSparse_config.h"
309309

310-
#define CHOLMOD__VERSION SUITESPARSE__VERCODE(5,3,0)
310+
#define CHOLMOD__VERSION SUITESPARSE__VERCODE(5,3,1)
311311
#if !defined (SUITESPARSE__VERSION) || \
312312
(SUITESPARSE__VERSION < SUITESPARSE__VERCODE(7,8,0))
313-
#error "CHOLMOD 5.3.0 requires SuiteSparse_config 7.8.0 or later"
313+
#error "CHOLMOD 5.3.1 requires SuiteSparse_config 7.8.0 or later"
314314
#endif
315315

316316
//------------------------------------------------------------------------------

ChangeLog

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ Feb 20, 2025: version 7.9.0
33
* GraphBLAS v9.4.5: Added the GxB_IndexBinaryOp. Added new JIT kernels.
44
Disabled more FactoryKernels to reduce compiled library size.
55
Added workaround for AppleClang compiler bug.
6-
* LAGraph v1.1.5: minor updates to github CI; typos.
6+
* LAGraph v1.1.5, SPEX v3.2.3, CHOLMOD 5.3.1: minor updates to github CI;
7+
typos, reduce pedantic compiler warnings.
78
* Package versions in this release: (* denotes a new version)
89
SuiteSparse_config 7.9.0 *
910
AMD 3.3.3
1011
BTF 2.3.2
1112
CAMD 3.3.3
1213
CCOLAMD 3.3.4
13-
CHOLMOD 5.3.0
14+
CHOLMOD 5.3.1 *
1415
COLAMD 3.3.4
1516
CSparse 4.3.2
1617
CXSparse 4.4.1

0 commit comments

Comments
 (0)