Skip to content

Commit ebc0966

Browse files
date, demo output, and docs for SuiteSparse 7.7.0
1 parent f1b5459 commit ebc0966

File tree

113 files changed

+763
-918
lines changed

Some content is hidden

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

113 files changed

+763
-918
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 "Feb XX, 2024" ) # FIXME for 7.7.0
15+
set ( AMD_DATE "Mar 22, 2024" )
1616
set ( AMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
1717
set ( AMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
1818
set ( AMD_VERSION_SUB 2 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.1, date: Jan 10, 2024
1+
AMD version 3.3.2, date: Mar 22, 2024
22
AMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
AMD version 3.3.1, Jan 10, 2024: approximate minimum degree ordering
4+
AMD version 3.3.2, Mar 22, 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.1, Jan 10, 2024, results:
118+
AMD version 3.3.2, Mar 22, 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.1, Jan 10, 2024: approximate minimum degree ordering
4+
AMD version 3.3.2, Mar 22, 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.1, Jan 10, 2024, results:
147+
AMD version 3.3.2, Mar 22, 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.1, date: Jan 10, 2024
1+
AMD version 3.3.2, date: Mar 22, 2024
22
AMD demo, with the 24-by-24 Harwell/Boeing matrix, can_24:
33

4-
AMD version 3.3.1, Jan 10, 2024: approximate minimum degree ordering
4+
AMD version 3.3.2, Mar 22, 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.1, Jan 10, 2024, results:
118+
AMD version 3.3.2, Mar 22, 2024, results:
119119
status: OK
120120
n, dimension of A: 24
121121
nz, number of nonzeros in A: 160

AMD/Doc/AMD_UserGuide.pdf

-438 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-
Feb XX, 2024: version 3.3.2
1+
Mar 22, 2024: version 3.3.2
22

33
* minor updates to build system
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.2, Feb XX, 2024}
2+
\date{VERSION 3.3.2, Mar 22, 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 "Feb XX, 2024"
385+
#define AMD_DATE "Mar 22, 2024"
386386
#define AMD_MAIN_VERSION 3
387387
#define AMD_SUB_VERSION 3
388388
#define AMD_SUBSUB_VERSION 2

BTF/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 ( BTF_DATE "Feb XX, 2024" ) # FIXME for 7.7.0
15+
set ( BTF_DATE "Mar 22, 2024" )
1616
set ( BTF_VERSION_MAJOR 2 CACHE STRING "" FORCE )
1717
set ( BTF_VERSION_MINOR 3 CACHE STRING "" FORCE )
1818
set ( BTF_VERSION_SUB 2 CACHE STRING "" FORCE )

BTF/Doc/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Feb XX, 2024: version 2.3.2
1+
Mar 22, 2024: version 2.3.2
22

33
* minor updates to build system
44

0 commit comments

Comments
 (0)