Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SuiteSparse 7.3.0 #472

Merged
merged 17 commits into from
Oct 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ifdef cplusplus in cholmod.h
DrTimothyAldenDavis committed Oct 22, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0bb9a010b83c5247671ffb81b9fbc9fe281595e4
8 changes: 8 additions & 0 deletions CHOLMOD/Config/cholmod.h.in
Original file line number Diff line number Diff line change
@@ -102,6 +102,10 @@
CHOLMOD_VER_CODE(CHOLMOD_MAIN_VERSION,CHOLMOD_SUB_VERSION)
#define CHOLMOD_HAS_VERSION_FUNCTION

#ifdef __cplusplus
extern "C" {
#endif

int cholmod_version // returns CHOLMOD_VERSION, defined above
(
// if version is not NULL, then cholmod_version returns its contents as:
@@ -112,6 +116,10 @@ int cholmod_version // returns CHOLMOD_VERSION, defined above
) ;
int cholmod_l_version (int version [3]) ;

#ifdef __cplusplus
}
#endif

//==============================================================================
// Large file support
//==============================================================================
8 changes: 8 additions & 0 deletions CHOLMOD/Include/cholmod.h
Original file line number Diff line number Diff line change
@@ -102,6 +102,10 @@
CHOLMOD_VER_CODE(CHOLMOD_MAIN_VERSION,CHOLMOD_SUB_VERSION)
#define CHOLMOD_HAS_VERSION_FUNCTION

#ifdef __cplusplus
extern "C" {
#endif

int cholmod_version // returns CHOLMOD_VERSION, defined above
(
// if version is not NULL, then cholmod_version returns its contents as:
@@ -112,6 +116,10 @@ int cholmod_version // returns CHOLMOD_VERSION, defined above
) ;
int cholmod_l_version (int version [3]) ;

#ifdef __cplusplus
}
#endif

//==============================================================================
// Large file support
//==============================================================================
4 changes: 2 additions & 2 deletions Example/Include/my.h
Original file line number Diff line number Diff line change
@@ -11,10 +11,10 @@
// file, since it is constructed from Config/my.h.in by cmake.

// version and date for example user library
#define MY_DATE "Sept 18, 2023"
#define MY_DATE "Oct 23, 2023"
#define MY_MAJOR_VERSION 1
#define MY_MINOR_VERSION 4
#define MY_PATCH_VERSION 1
#define MY_PATCH_VERSION 3

#ifdef __cplusplus
extern "C" {