From 5d1ebdc985b9a845e3ab00735a59179f3ad60421 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 10 Dec 2007 14:21:43 +0000 Subject: [PATCH] Bug fix: FullMatrices are mxn matrices and not nxm. git-svn-id: https://svn.dealii.org/trunk@15590 0785d39b-7218-0410-832d-ea1e28bc413d --- .../lac/include/lac/full_matrix.templates.h | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) 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