Skip to content

Commit

Permalink
COLAMD 3.3.0: version update
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Nov 28, 2023
1 parent a2b2a42 commit 6453718
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
10 changes: 5 additions & 5 deletions COLAMD/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

cmake_minimum_required ( VERSION 3.20 )

set ( COLAMD_DATE "Sept 18, 2023" )
set ( COLAMD_DATE "Dec 30, 2023" )
set ( COLAMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
set ( COLAMD_VERSION_MINOR 2 CACHE STRING "" FORCE )
set ( COLAMD_VERSION_SUB 1 CACHE STRING "" FORCE )
set ( COLAMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
set ( COLAMD_VERSION_SUB 0 CACHE STRING "" FORCE )

message ( STATUS "Building COLAMD version: v"
${COLAMD_VERSION_MAJOR}.
Expand Down Expand Up @@ -43,10 +43,10 @@ include ( SuiteSparsePolicy )
#-------------------------------------------------------------------------------

if ( NOT SUITESPARSE_ROOT_CMAKELISTS )
find_package ( SuiteSparse_config 7.2.0
find_package ( SuiteSparse_config 7.4.0
PATHS ${CMAKE_SOURCE_DIR}/../SuiteSparse_config/build NO_DEFAULT_PATH )
if ( NOT TARGET SuiteSparse::SuiteSparseConfig )
find_package ( SuiteSparse_config 7.2.0 REQUIRED )
find_package ( SuiteSparse_config 7.4.0 REQUIRED )
endif ( )
endif ( )

Expand Down
4 changes: 2 additions & 2 deletions COLAMD/Demo/colamd_example.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Column 3, with 2 entries:
row 1
row 3

colamd version 3.2.1, Sept 18, 2023: OK.
colamd version 3.3.0, Dec 30, 2023: OK.
colamd: number of dense or empty rows ignored: 0
colamd: number of dense or empty columns ignored: 0
colamd: number of garbage collections performed: 0
Expand All @@ -38,7 +38,7 @@ Column 3, with 1 entries:
row 4
Column 4, with 0 entries:

symamd version 3.2.1, Sept 18, 2023: OK.
symamd version 3.3.0, Dec 30, 2023: OK.
symamd: number of dense or empty rows ignored: 0
symamd: number of dense or empty columns ignored: 0
symamd: number of garbage collections performed: 0
Expand Down
4 changes: 2 additions & 2 deletions COLAMD/Demo/colamd_l_example.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Column 3, with 2 entries:
row 1
row 3

colamd version 3.2.1, Sept 18, 2023: OK.
colamd version 3.3.0, Dec 30, 2023: OK.
colamd: number of dense or empty rows ignored: 0
colamd: number of dense or empty columns ignored: 0
colamd: number of garbage collections performed: 0
Expand All @@ -38,7 +38,7 @@ Column 3, with 1 entries:
row 4
Column 4, with 0 entries:

symamd version 3.2.1, Sept 18, 2023: OK.
symamd version 3.3.0, Dec 30, 2023: OK.
symamd: number of dense or empty rows ignored: 0
symamd: number of dense or empty columns ignored: 0
symamd: number of garbage collections performed: 0
Expand Down
4 changes: 4 additions & 0 deletions COLAMD/Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Dec 30, 2023: version 3.3.0

* major change to build system: by Markus Mützel

Sept 18, 2023: version 3.2.1

* cmake update: add "None" build type, from Antonio Rojas, for Arch Linux
Expand Down
6 changes: 3 additions & 3 deletions COLAMD/Include/colamd.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ extern "C" {
* Versions 2.3 and earlier of COLAMD do not include a #define'd version number.
*/

#define COLAMD_DATE "Sept 18, 2023"
#define COLAMD_DATE "Dec 30, 2023"
#define COLAMD_MAIN_VERSION 3
#define COLAMD_SUB_VERSION 2
#define COLAMD_SUBSUB_VERSION 1
#define COLAMD_SUB_VERSION 3
#define COLAMD_SUBSUB_VERSION 0

#define COLAMD_VERSION_CODE(main,sub) ((main) * 1000 + (sub))
#define COLAMD_VERSION \
Expand Down

0 comments on commit 6453718

Please sign in to comment.