From: Ralf Hartmann Date: Mon, 10 Dec 2007 14:21:43 +0000 (+0000) Subject: Bug fix: FullMatrices are mxn matrices and not nxm. X-Git-Tag: v8.0.0~9554 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d1ebdc985b9a845e3ab00735a59179f3ad60421;p=dealii.git Bug fix: FullMatrices are mxn matrices and not nxm. git-svn-id: https://svn.dealii.org/trunk@15590 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.templates.h b/deal.II/lac/include/lac/full_matrix.templates.h index e9a48242ea..aafc65b128 100644 --- a/deal.II/lac/include/lac/full_matrix.templates.h +++ b/deal.II/lac/include/lac/full_matrix.templates.h @@ -476,8 +476,8 @@ void FullMatrix::equ (const number a, Assert (m() == A.m(), ExcDimensionMismatch(m(), A.m())); Assert (n() == A.n(), ExcDimensionMismatch(n(), A.n())); - for (unsigned int i=0; i::equ (const number a, Assert (m() == B.m(), ExcDimensionMismatch(m(), B.m())); Assert (n() == B.n(), ExcDimensionMismatch(n(), B.n())); - for (unsigned int i=0; i::equ (const number a, Assert (m() == C.m(), ExcDimensionMismatch(m(), C.m())); Assert (n() == C.n(), ExcDimensionMismatch(n(), C.n())); - for (unsigned int i=0; i::add (const number a, Assert (m() == A.m(), ExcDimensionMismatch(m(), A.m())); Assert (n() == A.n(), ExcDimensionMismatch(n(), A.n())); - for (unsigned int i=0; i::add (const number a, Assert (m() == B.m(), ExcDimensionMismatch(m(), B.m())); Assert (n() == B.n(), ExcDimensionMismatch(n(), B.n())); - for (unsigned int i=0; i::add (const number a, Assert (n() == C.n(), ExcDimensionMismatch(n(), C.n())); - for (unsigned int i=0; i