-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6ea77c
commit c0c43fa
Showing
41 changed files
with
641 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* ========================================================================== */ | ||
/* === Core/cholmod_version ================================================= */ | ||
/* ========================================================================== */ | ||
|
||
/* ----------------------------------------------------------------------------- | ||
* CHOLMOD/Core Module. Copyright (C) 2005-2013, | ||
* Univ. of Florida. Author: Timothy A. Davis | ||
* The CHOLMOD/Core Module is licensed under Version 2.1 of the GNU | ||
* Lesser General Public License. See lesser.txt for a text of the license. | ||
* CHOLMOD is also available under other licenses; contact authors for details. | ||
* -------------------------------------------------------------------------- */ | ||
|
||
/* Return the current version of CHOLMOD. Unlike all other functions in | ||
CHOLMOD, this function does not require the CHOLMOD Common. */ | ||
|
||
#include "cholmod_internal.h" | ||
#include "cholmod_core.h" | ||
|
||
int CHOLMOD(version) /* returns CHOLMOD_VERSION */ | ||
( | ||
/* output, contents not defined on input. Not used if NULL. | ||
version [0] = CHOLMOD_MAIN_VERSION ; | ||
version [1] = CHOLMOD_SUB_VERSION ; | ||
version [2] = CHOLMOD_SUBSUB_VERSION ; | ||
*/ | ||
int version [3] | ||
) | ||
{ | ||
if (version != NULL) | ||
{ | ||
version [0] = CHOLMOD_MAIN_VERSION ; | ||
version [1] = CHOLMOD_SUB_VERSION ; | ||
version [2] = CHOLMOD_SUBSUB_VERSION ; | ||
} | ||
return (CHOLMOD_VERSION) ; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.