Skip to content

Commit

Permalink
CCOLAMD 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 f3b633e commit 1b1e995
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
10 changes: 5 additions & 5 deletions CCOLAMD/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 ( CCOLAMD_DATE "Sept 18, 2023" )
set ( CCOLAMD_DATE "Dec 30, 2023" )
set ( CCOLAMD_VERSION_MAJOR 3 CACHE STRING "" FORCE )
set ( CCOLAMD_VERSION_MINOR 2 CACHE STRING "" FORCE )
set ( CCOLAMD_VERSION_SUB 1 CACHE STRING "" FORCE )
set ( CCOLAMD_VERSION_MINOR 3 CACHE STRING "" FORCE )
set ( CCOLAMD_VERSION_SUB 0 CACHE STRING "" FORCE )

message ( STATUS "Building CCOLAMD version: v"
${CCOLAMD_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 CCOLAMD/Demo/ccolamd_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

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

csymamd version 3.2.1, Sept 18, 2023: OK.
csymamd version 3.3.0, Dec 30, 2023: OK.
csymamd: number of dense or empty rows ignored: 0
csymamd: number of dense or empty columns ignored: 0
csymamd: number of garbage collections performed: 0
Expand Down
4 changes: 2 additions & 2 deletions CCOLAMD/Demo/ccolamd_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

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

csymamd version 3.2.1, Sept 18, 2023: OK.
csymamd version 3.3.0, Dec 30, 2023: OK.
csymamd: number of dense or empty rows ignored: 0
csymamd: number of dense or empty columns ignored: 0
csymamd: number of garbage collections performed: 0
Expand Down
4 changes: 4 additions & 0 deletions CCOLAMD/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 CCOLAMD/Include/ccolamd.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ extern "C" {
* #endif
*/

#define CCOLAMD_DATE "Sept 18, 2023"
#define CCOLAMD_DATE "Dec 30, 2023"
#define CCOLAMD_MAIN_VERSION 3
#define CCOLAMD_SUB_VERSION 2
#define CCOLAMD_SUBSUB_VERSION 1
#define CCOLAMD_SUB_VERSION 3
#define CCOLAMD_SUBSUB_VERSION 0

#define CCOLAMD_VERSION_CODE(main,sub) ((main) * 1000 + (sub))
#define CCOLAMD_VERSION \
Expand Down

0 comments on commit 1b1e995

Please sign in to comment.