diff options
author | Alberto Ruiz <aruiz@um.es> | 2008-11-14 16:16:04 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2008-11-14 16:16:04 +0000 |
commit | f0a2248b9d9532e0814519408bff8b886bca2bbc (patch) | |
tree | 05d0751368350fe12b6f402528441290c49e64af /lib/Data/Packed/Internal/auxi.h | |
parent | b69fa7ed53d52e812afd27547f4f63e74cfe5527 (diff) |
subMatrix reimplemented and removed auxi.c
Diffstat (limited to 'lib/Data/Packed/Internal/auxi.h')
-rw-r--r-- | lib/Data/Packed/Internal/auxi.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/Data/Packed/Internal/auxi.h b/lib/Data/Packed/Internal/auxi.h deleted file mode 100644 index c234ef5..0000000 --- a/lib/Data/Packed/Internal/auxi.h +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #include <gsl/gsl_complex.h> | ||
2 | |||
3 | #define RVEC(A) int A##n, double*A##p | ||
4 | #define RMAT(A) int A##r, int A##c, double* A##p | ||
5 | #define KRVEC(A) int A##n, const double*A##p | ||
6 | #define KRMAT(A) int A##r, int A##c, const double* A##p | ||
7 | |||
8 | #define CVEC(A) int A##n, gsl_complex*A##p | ||
9 | #define CMAT(A) int A##r, int A##c, gsl_complex* A##p | ||
10 | #define KCVEC(A) int A##n, const gsl_complex*A##p | ||
11 | #define KCMAT(A) int A##r, int A##c, const gsl_complex* A##p | ||
12 | |||
13 | int submatrixR(int r1, int r2, int c1, int c2, KRMAT(x),RMAT(r)); | ||
14 | |||
15 | const char * gsl_strerror (const int gsl_errno); | ||
16 | |||
17 | int matrix_fscanf(char*filename, RMAT(a)); | ||
18 | |||
19 | void asm_finit(); | ||