Skip to content

Commit

Permalink
v4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Oct 19, 2019
1 parent 0a63af6 commit 5bd9288
Show file tree
Hide file tree
Showing 20 changed files with 531 additions and 34 deletions.
2 changes: 1 addition & 1 deletion AMD/Doc/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Jun 1, 2012: version 2.3.0

* changed from UFconfig to SuiteSparse_config

May 15, 2011: version 2.2.4
May 15, 2012: version 2.2.4

* minor fix to SIZE_T_MAX definition (finicky compiler workaround)

Expand Down
2 changes: 1 addition & 1 deletion CAMD/Doc/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Jun 1, 2012: version 2.3.0

* changed from UFconfig to SuiteSparse_config

May 15, 2011: version 2.2.4
May 15, 2012: version 2.2.4

* minor fix to SIZE_T_MAX definition (finicky compiler workaround)

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 2.9, July 31, 2013: OK.
ccolamd version 2.9, Oct 10, 2014: 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 2.9, July 31, 2013: OK.
csymamd version 2.9, Oct 10, 2014: 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 2.9, July 31, 2013: OK.
ccolamd version 2.9, Oct 10, 2014: 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 2.9, July 31, 2013: OK.
csymamd version 2.9, Oct 10, 2014: 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
6 changes: 6 additions & 0 deletions CHOLMOD/Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Oct 23, 2014: version 3.0.3

* minor fix for CHOLMOD/Supernodal/cholmod_super_symbolic.c (was using a
non-ANSI C method to declare and initialize a variable).
* added additional paper in CHOLMOD/Doc

Oct 10, 2014: version 3.0.2

* changes to accomodate GPU-accelerated SPQR
Expand Down
Binary file not shown.
Binary file modified CHOLMOD/Doc/UserGuide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion CHOLMOD/Doc/UserGuide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
\title{User Guide for CHOLMOD: a sparse Cholesky factorization and
modification package}

\date{VERSION 3.0.2, Oct 10, 2014}
\date{VERSION 3.0.3, Oct 23, 2014}
\maketitle

%-------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions CHOLMOD/Include/cholmod_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,11 @@

#define CHOLMOD_HAS_VERSION_FUNCTION

#define CHOLMOD_DATE "Oct 10, 2014"
#define CHOLMOD_DATE "Oct 23, 2014"
#define CHOLMOD_VER_CODE(main,sub) ((main) * 1000 + (sub))
#define CHOLMOD_MAIN_VERSION 3
#define CHOLMOD_SUB_VERSION 0
#define CHOLMOD_SUBSUB_VERSION 2
#define CHOLMOD_SUBSUB_VERSION 3
#define CHOLMOD_VERSION \
CHOLMOD_VER_CODE(CHOLMOD_MAIN_VERSION,CHOLMOD_SUB_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion CHOLMOD/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# CHOLMOD Makefile
#-------------------------------------------------------------------------------

VERSION = 3.0.2
VERSION = 3.0.3

# Note: If you do not have METIS, or do not wish to use it in CHOLMOD, you must
# compile CHOLMOD with the -DNPARTITION flag.
Expand Down
4 changes: 3 additions & 1 deletion CHOLMOD/Supernodal/cholmod_super_symbolic.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,8 @@ int CHOLMOD(super_symbolic2)

for (s = nfsuper-2 ; s >= 0 ; s--)
{
double lnz1 ;

/* should supernodes s and s+1 merge into a new node s? */
PRINT1 (("\n========= Check relax of s "ID" and s+1 "ID"\n", s, s+1)) ;

Expand Down Expand Up @@ -524,7 +526,7 @@ int CHOLMOD(super_symbolic2)
PRINT2 (("ns "ID" nscol0 "ID" nscol1 "ID"\n", ns, nscol0, nscol1)) ;

totzeros = Zeros [s+1] ; /* current # of zeros in s+1 */
double lnz1 = Snz [s+1] ; /* # entries in leading column of s+1 */
lnz1 = (double) (Snz [s+1]) ; /* # entries in leading column of s+1 */

/* determine if supernodes s and s+1 should merge */
if (ns <= nrelax0)
Expand Down
Loading

0 comments on commit 5bd9288

Please sign in to comment.