Skip to content

Commit b1c82e1

Browse files
target date June 20, 2024 for SuiteSparse 7.8.0
1 parent b471a7f commit b1c82e1

File tree

87 files changed

+312
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+312
-309
lines changed

AMD/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
cmake_minimum_required ( VERSION 3.22 )
1414

15-
set ( AMD_DATE "June XX, 2024" ) # FIXME NOW
15+
set ( AMD_DATE "June 20, 2024" )
1616
set ( AMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1717
set ( AMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1818
set ( AMD_VERSION_SUB 3 CACHE STRING "" FORCE )

AMD/Demo/amd_demo.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
AMD version 3.3.3, date: June XX, 2024
1+
AMD version 3.3.3, date: June 20, 2024
22
AMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
AMD version 3.3.3, June XX, 2024: approximate minimum degree ordering
4+
AMD version 3.3.3, June 20, 2024: approximate minimum degree ordering
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -115,7 +115,7 @@ Plot of input matrix pattern:
115115
23: . . . . . . X . . . . X X . . . . . . . . . . X
116116
return value from amd_order: 0 (should be 0)
117117

118-
AMD version 3.3.3, June XX, 2024, results:
118+
AMD version 3.3.3, June 20, 2024, results:
119119
status: OK
120120
n, dimension of A: 24
121121
nz, number of nonzeros in A: 160

AMD/Demo/amd_demo2.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
AMD demo, with a jumbled version of the 24-by-24
22
Harwell/Boeing matrix, can_24:
33

4-
AMD version 3.3.3, June XX, 2024: approximate minimum degree ordering
4+
AMD version 3.3.3, June 20, 2024: approximate minimum degree ordering
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -144,7 +144,7 @@ Plot of symmetric matrix to be ordered by amd_order:
144144
23: . . . . . . X . . . . X X . . . . . . . . . . X
145145
return value from amd_order: 1 (should be 1)
146146

147-
AMD version 3.3.3, June XX, 2024, results:
147+
AMD version 3.3.3, June 20, 2024, results:
148148
status: OK, but jumbled
149149
n, dimension of A: 24
150150
nz, number of nonzeros in A: 102

AMD/Demo/amd_l_demo.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
AMD version 3.3.3, date: June XX, 2024
1+
AMD version 3.3.3, date: June 20, 2024
22
AMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
AMD version 3.3.3, June XX, 2024: approximate minimum degree ordering
4+
AMD version 3.3.3, June 20, 2024: approximate minimum degree ordering
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -115,7 +115,7 @@ Plot of input matrix pattern:
115115
23: . . . . . . X . . . . X X . . . . . . . . . . X
116116
return value from amd_l_order: 0 (should be 0)
117117

118-
AMD version 3.3.3, June XX, 2024, results:
118+
AMD version 3.3.3, June 20, 2024, results:
119119
status: OK
120120
n, dimension of A: 24
121121
nz, number of nonzeros in A: 160

AMD/Doc/AMD_UserGuide.pdf

-356 Bytes
Binary file not shown.

AMD/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
June XX, 2024: version 3.3.3 FIXME NOW
1+
June 20, 2024: version 3.3.3
22

33
* minor update for MATLAB on Windows
44

AMD/Doc/amd_version.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% version of SuiteSparse/AMD
2-
\date{VERSION 3.3.3, June XX, 2024}
2+
\date{VERSION 3.3.3, June 20, 2024}

AMD/Include/amd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ void amd_version (int version [3]) ;
382382
* Versions 1.1 and earlier of AMD do not include a #define'd version number.
383383
*/
384384

385-
#define AMD_DATE "June XX, 2024"
385+
#define AMD_DATE "June 20, 2024"
386386
#define AMD_MAIN_VERSION 3
387387
#define AMD_SUB_VERSION 3
388388
#define AMD_SUBSUB_VERSION 3

CAMD/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
cmake_minimum_required ( VERSION 3.22 )
1313

14-
set ( CAMD_DATE "June XX, 2024" ) # FIXME NOW
14+
set ( CAMD_DATE "June 20, 2024" )
1515
set ( CAMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1616
set ( CAMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1717
set ( CAMD_VERSION_SUB 3 CACHE STRING "" FORCE )

CAMD/Demo/camd_demo.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
CAMD version 3.3.3, date: June XX, 2024
1+
CAMD version 3.3.3, date: June 20, 2024
22
CAMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
camd version 3.3.3, June XX, 2024: approximate minimum degree ordering:
4+
camd version 3.3.3, June 20, 2024: approximate minimum degree ordering:
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -115,7 +115,7 @@ Plot of input matrix pattern:
115115
23: . . . . . . X . . . . X X . . . . . . . . . . X
116116
return value from camd_order: 0 (should be 0)
117117

118-
CAMD version 3.3.3, June XX, 2024, results:
118+
CAMD version 3.3.3, June 20, 2024, results:
119119
status: OK
120120
n, dimension of A: 24
121121
nz, number of nonzeros in A: 160

CAMD/Demo/camd_demo2.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CAMD demo, with a jumbled version of the 24-by-24
22
Harwell/Boeing matrix, can_24:
33

4-
camd version 3.3.3, June XX, 2024: approximate minimum degree ordering:
4+
camd version 3.3.3, June 20, 2024: approximate minimum degree ordering:
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -144,7 +144,7 @@ Plot of symmetric matrix to be ordered by camd_order:
144144
23: . . . . . . X . . . . X X . . . . . . . . . . X
145145
return value from camd_order: 1 (should be 1)
146146

147-
CAMD version 3.3.3, June XX, 2024, results:
147+
CAMD version 3.3.3, June 20, 2024, results:
148148
status: OK, but jumbled
149149
n, dimension of A: 24
150150
nz, number of nonzeros in A: 102

CAMD/Demo/camd_l_demo.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
CAMD version 3.3.3, date: June XX, 2024
1+
CAMD version 3.3.3, date: June 20, 2024
22
CAMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
camd version 3.3.3, June XX, 2024: approximate minimum degree ordering:
4+
camd version 3.3.3, June 20, 2024: approximate minimum degree ordering:
55
dense row parameter: 10
66
(rows with more than max (10 * sqrt (n), 16) entries are
77
considered "dense", and placed last in output permutation)
@@ -115,7 +115,7 @@ Plot of input matrix pattern:
115115
23: . . . . . . X . . . . X X . . . . . . . . . . X
116116
return value from camd_l_order: 0 (should be 0)
117117

118-
CAMD version 3.3.3, June XX, 2024, results:
118+
CAMD version 3.3.3, June 20, 2024, results:
119119
status: OK
120120
n, dimension of A: 24
121121
nz, number of nonzeros in A: 160

CAMD/Doc/CAMD_UserGuide.pdf

-380 Bytes
Binary file not shown.

CAMD/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
June XX, 2024: version 3.3.3 FIXME NOW
1+
June 20, 2024: version 3.3.3
22

33
* minor update for MATLAB on Windows
44

CAMD/Doc/camd_version.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% version of SuiteSparse/CAMD
2-
\date{VERSION 3.3.3, June XX, 2024}
2+
\date{VERSION 3.3.3, June 20, 2024}

CAMD/Include/camd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ void camd_version (int version [3]) ;
392392
* #endif
393393
*/
394394

395-
#define CAMD_DATE "June XX, 2024"
395+
#define CAMD_DATE "June 20, 2024"
396396
#define CAMD_MAIN_VERSION 3
397397
#define CAMD_SUB_VERSION 3
398398
#define CAMD_SUBSUB_VERSION 3

CCOLAMD/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
cmake_minimum_required ( VERSION 3.22 )
1313

14-
set ( CCOLAMD_DATE "June XX, 2024" ) # FIXME NOW
14+
set ( CCOLAMD_DATE "June 20, 2024" )
1515
set ( CCOLAMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1616
set ( CCOLAMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1717
set ( CCOLAMD_VERSION_SUB 4 CACHE STRING "" FORCE )

CCOLAMD/Demo/ccolamd_example.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Column 3, with 2 entries:
1616
row 1
1717
row 3
1818

19-
ccolamd version 3.3.4, June XX, 2024: OK.
19+
ccolamd version 3.3.4, June 20, 2024: OK.
2020
ccolamd: number of dense or empty rows ignored: 0
2121
ccolamd: number of dense or empty columns ignored: 0
2222
ccolamd: number of garbage collections performed: 0
@@ -39,7 +39,7 @@ Column 3, with 1 entries:
3939
row 4
4040
Column 4, with 0 entries:
4141

42-
csymamd version 3.3.4, June XX, 2024: OK.
42+
csymamd version 3.3.4, June 20, 2024: OK.
4343
csymamd: number of dense or empty rows ignored: 0
4444
csymamd: number of dense or empty columns ignored: 0
4545
csymamd: number of garbage collections performed: 0

CCOLAMD/Demo/ccolamd_l_example.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Column 3, with 2 entries:
1616
row 1
1717
row 3
1818

19-
ccolamd version 3.3.4, June XX, 2024: OK.
19+
ccolamd version 3.3.4, June 20, 2024: OK.
2020
ccolamd: number of dense or empty rows ignored: 0
2121
ccolamd: number of dense or empty columns ignored: 0
2222
ccolamd: number of garbage collections performed: 0
@@ -39,7 +39,7 @@ Column 3, with 1 entries:
3939
row 4
4040
Column 4, with 0 entries:
4141

42-
csymamd version 3.3.4, June XX, 2024: OK.
42+
csymamd version 3.3.4, June 20, 2024: OK.
4343
csymamd: number of dense or empty rows ignored: 0
4444
csymamd: number of dense or empty columns ignored: 0
4545
csymamd: number of garbage collections performed: 0

CCOLAMD/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
June XX, 2024: version 3.3.4 FIXME NOW
1+
June 20, 2024: version 3.3.4
22

33
* minor update for MATLAB on Windows
44

CCOLAMD/Include/ccolamd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* #endif
3737
*/
3838

39-
#define CCOLAMD_DATE "June XX, 2024"
39+
#define CCOLAMD_DATE "June 20, 2024"
4040
#define CCOLAMD_MAIN_VERSION 3
4141
#define CCOLAMD_SUB_VERSION 3
4242
#define CCOLAMD_SUBSUB_VERSION 4

CHOLMOD/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# cmake 3.22 is required to find the BLAS/LAPACK
1313
cmake_minimum_required ( VERSION 3.22 )
1414

15-
set ( CHOLMOD_DATE "June XX, 2024" ) # FIXME NOW
15+
set ( CHOLMOD_DATE "June 20, 2024" )
1616
set ( CHOLMOD_VERSION_MAJOR 5 CACHE STRING "" FORCE )
1717
set ( CHOLMOD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1818
set ( CHOLMOD_VERSION_SUB 0 CACHE STRING "" FORCE )

CHOLMOD/Doc/CHOLMOD_UserGuide.pdf

-343 Bytes
Binary file not shown.

CHOLMOD/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
June XX, 2024: version 5.3.0 FIXME NOW
1+
June 20, 2024: version 5.3.0
22

33
* added cholmod_query: to deterimine at run time which modules
44
of CHOLMOD have been compiled into the libcholmod.so.

CHOLMOD/Doc/cholmod_version.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% version of SuiteSparse/CHOLMOD
2-
\date{VERSION 5.3.0, June XX, 2024}
2+
\date{VERSION 5.3.0, June 20, 2024}

CHOLMOD/Include/cholmod.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
// version control
247247
//------------------------------------------------------------------------------
248248

249-
#define CHOLMOD_DATE "June XX, 2024"
249+
#define CHOLMOD_DATE "June 20, 2024"
250250
#define CHOLMOD_MAIN_VERSION 5
251251
#define CHOLMOD_SUB_VERSION 3
252252
#define CHOLMOD_SUBSUB_VERSION 0

COLAMD/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
cmake_minimum_required ( VERSION 3.22 )
1313

14-
set ( COLAMD_DATE "June XX, 2024" ) # FIXME NOW
14+
set ( COLAMD_DATE "June 20, 2024" )
1515
set ( COLAMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1616
set ( COLAMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1717
set ( COLAMD_VERSION_SUB 4 CACHE STRING "" FORCE )

COLAMD/Demo/colamd_example.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Column 3, with 2 entries:
1616
row 1
1717
row 3
1818

19-
colamd version 3.3.4, June XX, 2024: OK.
19+
colamd version 3.3.4, June 20, 2024: OK.
2020
colamd: number of dense or empty rows ignored: 0
2121
colamd: number of dense or empty columns ignored: 0
2222
colamd: number of garbage collections performed: 0
@@ -39,7 +39,7 @@ Column 3, with 1 entries:
3939
row 4
4040
Column 4, with 0 entries:
4141

42-
symamd version 3.3.4, June XX, 2024: OK.
42+
symamd version 3.3.4, June 20, 2024: OK.
4343
symamd: number of dense or empty rows ignored: 0
4444
symamd: number of dense or empty columns ignored: 0
4545
symamd: number of garbage collections performed: 0

COLAMD/Demo/colamd_l_example.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Column 3, with 2 entries:
1616
row 1
1717
row 3
1818

19-
colamd version 3.3.4, June XX, 2024: OK.
19+
colamd version 3.3.4, June 20, 2024: OK.
2020
colamd: number of dense or empty rows ignored: 0
2121
colamd: number of dense or empty columns ignored: 0
2222
colamd: number of garbage collections performed: 0
@@ -39,7 +39,7 @@ Column 3, with 1 entries:
3939
row 4
4040
Column 4, with 0 entries:
4141

42-
symamd version 3.3.4, June XX, 2024: OK.
42+
symamd version 3.3.4, June 20, 2024: OK.
4343
symamd: number of dense or empty rows ignored: 0
4444
symamd: number of dense or empty columns ignored: 0
4545
symamd: number of garbage collections performed: 0

COLAMD/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
June XX, 2024: version 3.3.4 FIXME NOW
1+
June 20, 2024: version 3.3.4
22

33
* minor update for MATLAB on Windows
44

COLAMD/Include/colamd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* Versions 2.3 and earlier of COLAMD do not include a #define'd version number.
6666
*/
6767

68-
#define COLAMD_DATE "June XX, 2024"
68+
#define COLAMD_DATE "June 20, 2024"
6969
#define COLAMD_MAIN_VERSION 3
7070
#define COLAMD_SUB_VERSION 3
7171
#define COLAMD_SUBSUB_VERSION 4

CXSparse/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
cmake_minimum_required ( VERSION 3.22 )
1313

14-
set ( CXSPARSE_DATE "June XX, 2024" ) # FIXME NOW
14+
set ( CXSPARSE_DATE "June 20, 2024" )
1515
set ( CXSPARSE_VERSION_MAJOR 4 CACHE STRING "" FORCE )
1616
set ( CXSPARSE_VERSION_MINOR 4 CACHE STRING "" FORCE )
1717
set ( CXSPARSE_VERSION_SUB 1 CACHE STRING "" FORCE )

0 commit comments

Comments
 (0)