9 #ifndef __IPLAPACK_HPP__ 10 #define __IPLAPACK_HPP__ int Index
Type for all incides.
void IpLapackDpotrf(Index ndim, Number *a, Index lda, Index &info)
Wrapper for LAPACK subroutine DPOTRF.
void IpLapackDsyev(bool compute_eigenvectors, Index ndim, Number *a, Index lda, Number *w, Index &info)
Wrapper for LAPACK subroutine DSYEV.
double Number
Type for all number.
DECLARE_STD_EXCEPTION(SUFFIX_EMPTY)
void IpLapackDpotrs(Index ndim, Index nrhs, const Number *a, Index lda, Number *b, Index ldb)
Wrapper for LAPACK subroutine DPOTRS.
void IpLapackDgetrf(Index ndim, Number *a, Index *pivot, Index lda, Index &info)
Wrapper for LAPACK subroutine DGETRF.
void IpLapackDgetrs(Index ndim, Index nrhs, const Number *a, Index lda, Index *ipiv, Number *b, Index ldb)
Wrapper for LAPACK subroutine DGETRS.