-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '41-remove-boost-dependency'
- Loading branch information
Showing
14 changed files
with
503 additions
and
34 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#ifndef CMR_LINEAR_ALGEBRA_H | ||
#define CMR_LINEAR_ALGEBRA_H | ||
|
||
/** | ||
* \file linear_algebra.h | ||
* | ||
* \author Matthias Walter | ||
*/ | ||
|
||
#include <cmr/env.h> | ||
#include <cmr/matrix.h> | ||
|
||
#include <stdio.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/** | ||
* \brief Computes the determinant of an 8-bit integer matrix. | ||
*/ | ||
|
||
CMR_EXPORT | ||
CMR_ERROR CMRchrmatDeterminant( | ||
CMR* cmr, /**< \ref CMR environment. */ | ||
CMR_CHRMAT* matrix, /**< Matrix. */ | ||
int64_t* pdeterminant /**< Pointer for storing the determinant. */ | ||
); | ||
|
||
/** | ||
* \brief Computes the determinant of an int matrix. | ||
*/ | ||
|
||
CMR_EXPORT | ||
CMR_ERROR CMRintmatDeterminant( | ||
CMR* cmr, /**< \ref CMR environment. */ | ||
CMR_INTMAT* matrix, /**< Matrix. */ | ||
int64_t* pdeterminant /**< Pointer for storing the determinant. */ | ||
); | ||
|
||
|
||
/**@}*/ | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* CMR_LINEAR_ALGEBRA_H */ |
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
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.