From: bangerth Date: Mon, 1 Nov 2010 03:13:43 +0000 (+0000) Subject: Make things compile again :-( X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1df88deea03db043206a5947c6c8cf7ccb8aa01c;p=dealii-svn.git Make things compile again :-( git-svn-id: https://svn.dealii.org/trunk@22560 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 45c1267cf0..f5d34751ee 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, &k, &beta, &dst(0,0), &m); + &this->val[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, &n, &beta, &dst(0,0), &m); + &this->val[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, &k, &beta, &dst(0,0), &m); + &this->val[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, &n, &beta, &dst(0,0), &m); + &this->val[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, &nn, &ipiv[0], &info); + internal::getrf_switch::getrf(&nn, &nn, &this->val[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, &nn, &ipiv[0], &inv_work[0], &nn, &info); + internal::getrf_switch::getri(&nn, &this->val[0], &nn, &ipiv[0], &inv_work[0], &nn, &info); Assert(info >= 0, ExcInternalError()); Assert(info == 0, LACExceptions::ExcSingular());