LINEAR++ library: AFF to LAPACK
lapackxx.h
Go to the documentation of this file.
1 
35 // include guard
36 #ifndef LINEAR_LAPACKXX_H_VERSION
37 
38 #define LINEAR_LAPACKXX_H_VERSION \
39  "LINEAR_LAPACKXX_H V1.0 "
40 
41 #include<linearxx/matrix.h>
42 
54 namespace linear {
55 
57 namespace lapack {
58  //
60  void dposv(char UPLO, TDmatrix& A, TDmatrix& B, int& INFO,
61  const bool& debug=false);
62  TDmatrix dposv(const TDmatrix::Tcoc& A,
63  const TDmatrix::Tcoc& B,
64  char UPLO='U', const bool& debug=false);
65 
66 } // namespace lapack
67 } // namespace linear
68 
69 #endif // LINEAR_LAPACKXX_H_VERSION (includeguard)
70 
71 /* ----- END OF lapackxx.h ----- */
aff::Array< double > TDmatrix
Definition: matrix.h:46
define Matrix class based on libaff (prototypes)
Modules of liblinearxx.a.
Definition: error.cc:43
void dposv(char UPLO, TDmatrix &A, TDmatrix &B, int &INFO, const bool &debug)
Compute the solution to a real system of linear equations A * X = B.
Definition: dposv_if.cc:87