1234567891011121314151617181920212223242526272829 |
- #ifndef EIGEN_LAPACK_COMMON_H
- #define EIGEN_LAPACK_COMMON_H
- #include "../blas/common.h"
- #include "../Eigen/src/misc/lapack.h"
- #define EIGEN_LAPACK_FUNC(FUNC,ARGLIST) \
- extern "C" { int EIGEN_BLAS_FUNC(FUNC) ARGLIST; } \
- int EIGEN_BLAS_FUNC(FUNC) ARGLIST
- typedef Eigen::Map<Eigen::Transpositions<Eigen::Dynamic,Eigen::Dynamic,int> > PivotsType;
- #if ISCOMPLEX
- #define EIGEN_LAPACK_ARG_IF_COMPLEX(X) X,
- #else
- #define EIGEN_LAPACK_ARG_IF_COMPLEX(X)
- #endif
- #endif
|