Skip to content
Snippets Groups Projects
Commit 1c191c73 authored by Sebastien Blaise's avatar Sebastien Blaise
Browse files

lu factorization: adding pivot indices as parameter

parent 7b0293ba
No related branches found
No related tags found
No related merge requests found
...@@ -290,24 +290,22 @@ bool fullMatrix<double>::luSolve(const fullVector<double> &rhs, fullVector<doubl ...@@ -290,24 +290,22 @@ bool fullMatrix<double>::luSolve(const fullVector<double> &rhs, fullVector<doubl
} }
template<> template<>
bool fullMatrix<double>::luFactor() bool fullMatrix<double>::luFactor(fullVector<int> &ipiv)
{ {
int M = size1(), N = size2(), lda = size1(), info; int M = size1(), N = size2(), lda = size1(), info;
int *ipiv = new int[std::min(M, N)]; ipiv.resize(std::min(M, N));
F77NAME(dgetrf)(&M, &N, _data, &lda, ipiv, &info); F77NAME(dgetrf)(&M, &N, _data, &lda, &ipiv(0), &info);
delete [] ipiv;
if(info == 0) return true; if(info == 0) return true;
return false; return false;
} }
template<> template<>
bool fullMatrix<double>::luSubstitute(const fullVector<double> &rhs, fullVector<double> &result) bool fullMatrix<double>::luSubstitute(const fullVector<double> &rhs, fullVector<int> &ipiv, fullVector<double> &result)
{ {
int N = size1(), nrhs=1, lda = N, ldb = N, info; int N = size1(), nrhs=1, lda = N, ldb = N, info;
int *ipiv = new int[N]; char trans = 'N';
for(int i = 0; i < N; i++) result(i) = rhs(i); for(int i = 0; i < N; i++) result(i) = rhs(i);
F77NAME(dgetrs)("N", &N, &nrhs, _data, &lda, ipiv, result._data, &ldb, &info); F77NAME(dgetrs)(&trans, &N, &nrhs, _data, &lda, &ipiv(0), result._data, &ldb, &info);
delete [] ipiv;
if(info == 0) return true; if(info == 0) return true;
return false; return false;
} }
......
...@@ -686,7 +686,7 @@ class fullMatrix ...@@ -686,7 +686,7 @@ class fullMatrix
} }
#endif #endif
; ;
bool luFactor() bool luFactor(fullVector<int> &ipiv)
#if !defined(HAVE_LAPACK) #if !defined(HAVE_LAPACK)
{ {
Msg::Error("LU factorization requires LAPACK"); Msg::Error("LU factorization requires LAPACK");
...@@ -694,7 +694,7 @@ class fullMatrix ...@@ -694,7 +694,7 @@ class fullMatrix
} }
#endif #endif
; ;
bool luSubstitute(const fullVector<double> &rhs, fullVector<double> &result) bool luSubstitute(const fullVector<scalar> &rhs, fullVector<int> &ipiv, fullVector<scalar> &result)
#if !defined(HAVE_LAPACK) #if !defined(HAVE_LAPACK)
{ {
Msg::Error("LU substitution requires LAPACK"); Msg::Error("LU substitution requires LAPACK");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment