Skip to content

Commit

Permalink
change return value, int to void, free_factor
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Oct 22, 2023
1 parent 48ea814 commit 189bc4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHOLMOD/Include/cholmod_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ void cholmod_l_set_empty
size_t n
) ;

int cholmod_to_simplicial_sym
void cholmod_to_simplicial_sym
(
cholmod_factor *L, // sparse factorization to modify
int to_ll, // change L to hold a LL' or LDL' factorization
cholmod_common *Common
) ;

int cholmod_l_to_simplicial_sym
void cholmod_l_to_simplicial_sym
(
cholmod_factor *L, // sparse factorization to modify
int to_ll, // change L to hold a LL' or LDL' factorization
Expand Down
2 changes: 1 addition & 1 deletion CHOLMOD/Utility/t_cholmod_free_factor.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// itself is not freed. This method is for internal use, not for the end-user
// (who should use cholmod_change_factor to access this functionality).

int CHOLMOD(to_simplicial_sym)
void CHOLMOD(to_simplicial_sym)
(
cholmod_factor *L, // sparse factorization to modify
int to_ll, // change L to hold a LL' or LDL' factorization
Expand Down

0 comments on commit 189bc4d

Please sign in to comment.