diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h')
-rw-r--r-- | lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h index 9526583..a3f1899 100644 --- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h +++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | |||
@@ -36,10 +36,6 @@ typedef short ftnlen; | |||
36 | 36 | ||
37 | /********************************************************/ | 37 | /********************************************************/ |
38 | 38 | ||
39 | #include "clapack.h" | ||
40 | |||
41 | /********************************************************/ | ||
42 | |||
43 | #define FVEC(A) int A##n, float*A##p | 39 | #define FVEC(A) int A##n, float*A##p |
44 | #define DVEC(A) int A##n, double*A##p | 40 | #define DVEC(A) int A##n, double*A##p |
45 | #define QVEC(A) int A##n, complex*A##p | 41 | #define QVEC(A) int A##n, complex*A##p |
@@ -62,70 +58,3 @@ typedef short ftnlen; | |||
62 | #define KCMAT(A) int A##r, int A##c, const doublecomplex* A##p | 58 | #define KCMAT(A) int A##r, int A##c, const doublecomplex* A##p |
63 | #define KPMAT(A) int A##r, int A##c, const void* A##p, int A##s | 59 | #define KPMAT(A) int A##r, int A##c, const void* A##p, int A##s |
64 | 60 | ||
65 | /********************************************************/ | ||
66 | |||
67 | int multiplyF(int ta, int tb, KFMAT(a),KFMAT(b),FMAT(r)); | ||
68 | int multiplyR(int ta, int tb, KDMAT(a),KDMAT(b),DMAT(r)); | ||
69 | int multiplyC(int ta, int tb, KCMAT(a),KCMAT(b),CMAT(r)); | ||
70 | int multiplyQ(int ta, int tb, KQMAT(a),KQMAT(b),QMAT(r)); | ||
71 | |||
72 | int transF(KFMAT(x),FMAT(t)); | ||
73 | int transR(KDMAT(x),DMAT(t)); | ||
74 | int transQ(KQMAT(x),QMAT(t)); | ||
75 | int transC(KCMAT(x),CMAT(t)); | ||
76 | int transP(KPMAT(x),PMAT(t)); | ||
77 | |||
78 | int constantF(float * pval, FVEC(r)); | ||
79 | int constantR(double * pval, DVEC(r)); | ||
80 | int constantQ(complex* pval, QVEC(r)); | ||
81 | int constantC(doublecomplex* pval, CVEC(r)); | ||
82 | int constantP(void* pval, PVEC(r)); | ||
83 | |||
84 | int float2double(FVEC(x),DVEC(y)); | ||
85 | int double2float(DVEC(x),FVEC(y)); | ||
86 | |||
87 | int conjugateQ(KQVEC(x),QVEC(t)); | ||
88 | int conjugateC(KCVEC(x),CVEC(t)); | ||
89 | |||
90 | int stepF(FVEC(x),FVEC(y)); | ||
91 | int stepD(DVEC(x),DVEC(y)); | ||
92 | |||
93 | int condF(FVEC(x),FVEC(y),FVEC(lt),FVEC(eq),FVEC(gt),FVEC(r)); | ||
94 | int condD(DVEC(x),DVEC(y),DVEC(lt),DVEC(eq),DVEC(gt),DVEC(r)); | ||
95 | |||
96 | int svd_l_R(KDMAT(x),DMAT(u),DVEC(s),DMAT(v)); | ||
97 | int svd_l_Rdd(KDMAT(x),DMAT(u),DVEC(s),DMAT(v)); | ||
98 | int svd_l_C(KCMAT(a),CMAT(u),DVEC(s),CMAT(v)); | ||
99 | |||
100 | int eig_l_C(KCMAT(a),CMAT(u),CVEC(s),CMAT(v)); | ||
101 | int eig_l_R(KDMAT(a),DMAT(u),CVEC(s),DMAT(v)); | ||
102 | |||
103 | int eig_l_S(int,KDMAT(a),DVEC(s),DMAT(v)); | ||
104 | int eig_l_H(int,KCMAT(a),DVEC(s),CMAT(v)); | ||
105 | |||
106 | int linearSolveR_l(KDMAT(a),KDMAT(b),DMAT(x)); | ||
107 | int linearSolveC_l(KCMAT(a),KCMAT(b),CMAT(x)); | ||
108 | |||
109 | int linearSolveLSR_l(KDMAT(a),KDMAT(b),DMAT(x)); | ||
110 | int linearSolveLSC_l(KCMAT(a),KCMAT(b),CMAT(x)); | ||
111 | |||
112 | int linearSolveSVDR_l(double,KDMAT(a),KDMAT(b),DMAT(x)); | ||
113 | int linearSolveSVDC_l(double,KCMAT(a),KCMAT(b),CMAT(x)); | ||
114 | |||
115 | int chol_l_H(KCMAT(a),CMAT(r)); | ||
116 | int chol_l_S(KDMAT(a),DMAT(r)); | ||
117 | |||
118 | int qr_l_R(KDMAT(a), DVEC(tau), DMAT(r)); | ||
119 | int qr_l_C(KCMAT(a), CVEC(tau), CMAT(r)); | ||
120 | |||
121 | int hess_l_R(KDMAT(a), DVEC(tau), DMAT(r)); | ||
122 | int hess_l_C(KCMAT(a), CVEC(tau), CMAT(r)); | ||
123 | |||
124 | int schur_l_R(KDMAT(a), DMAT(u), DMAT(s)); | ||
125 | int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)); | ||
126 | |||
127 | int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r)); | ||
128 | int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)); | ||
129 | |||
130 | int luS_l_R(KDMAT(a), KDVEC(ipiv), KDMAT(b), DMAT(x)); | ||
131 | int luS_l_C(KCMAT(a), KDVEC(ipiv), KCMAT(b), CMAT(x)); | ||