From afd27d21e8bc840a2ba2ad927dfacb02eabc204f Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 1 Nov 2010 03:15:16 +0000 Subject: [PATCH] Now, for real. This only happens when we have LAPACK functions, so I can't test it locally... git-svn-id: https://svn.dealii.org/trunk@22561 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/full_matrix.templates.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deal.II/include/deal.II/lac/full_matrix.templates.h b/deal.II/include/deal.II/lac/full_matrix.templates.h index f5d34751ee..c45f2763f6 100644 --- a/deal.II/include/deal.II/lac/full_matrix.templates.h +++ b/deal.II/include/deal.II/lac/full_matrix.templates.h @@ -616,7 +616,7 @@ void FullMatrix::mmult (FullMatrix &dst, // calculating the matrix-matrix // product. internal::gemm_switch::gemm(notrans, notrans, &m, &n, &k, &alpha, &src(0,0), &m, - &this->val[0], &k, &beta, &dst(0,0), &m); + &this->values[0], &k, &beta, &dst(0,0), &m); return; } @@ -704,7 +704,7 @@ void FullMatrix::Tmmult (FullMatrix &dst, // calculating the matrix-matrix // product. internal::gemm_switch::gemm(notrans, trans, &m, &n, &k, &alpha, &src(0,0), &m, - &this->val[0], &n, &beta, &dst(0,0), &m); + &this->values[0], &n, &beta, &dst(0,0), &m); return; } @@ -795,7 +795,7 @@ void FullMatrix::mTmult (FullMatrix &dst, // calculating the matrix-matrix // product. internal::gemm_switch::gemm(trans, notrans, &m, &n, &k, &alpha, &src(0,0), &k, - &this->val[0], &k, &beta, &dst(0,0), &m); + &this->values[0], &k, &beta, &dst(0,0), &m); return; } @@ -880,7 +880,7 @@ void FullMatrix::TmTmult (FullMatrix &dst, // calculating the matrix-matrix // product. internal::gemm_switch::gemm(trans, trans, &m, &n, &k, &alpha, &src(0,0), &k, - &this->val[0], &n, &beta, &dst(0,0), &m); + &this->values[0], &n, &beta, &dst(0,0), &m); return; } @@ -1797,7 +1797,7 @@ FullMatrix::gauss_jordan () // Use the LAPACK function getrf for // calculating the LU factorization. - internal::getrf_switch::getrf(&nn, &nn, &this->val[0], &nn, &ipiv[0], &info); + internal::getrf_switch::getrf(&nn, &nn, &this->values[0], &nn, &ipiv[0], &info); Assert(info >= 0, ExcInternalError()); Assert(info == 0, LACExceptions::ExcSingular()); @@ -1808,7 +1808,7 @@ FullMatrix::gauss_jordan () // Use the LAPACK function getri for // calculating the actual inverse using // the LU factorization. - internal::getrf_switch::getri(&nn, &this->val[0], &nn, &ipiv[0], &inv_work[0], &nn, &info); + internal::getrf_switch::getri(&nn, &this->values[0], &nn, &ipiv[0], &inv_work[0], &nn, &info); Assert(info >= 0, ExcInternalError()); Assert(info == 0, LACExceptions::ExcSingular()); -- 2.39.5