From 3ae1c596bf3fbad952d3a70039997ea272a7aebb Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 30 Oct 2011 13:52:22 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://svn.dealii.org/trunk@24701 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/lac/full_matrix_04.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/lac/full_matrix_04.cc b/tests/lac/full_matrix_04.cc index 5baab142a8..64321f4992 100644 --- a/tests/lac/full_matrix_04.cc +++ b/tests/lac/full_matrix_04.cc @@ -10,7 +10,7 @@ // //---------------------------- full_matrix_03.cc,v --------------------------- -//check method FullMatrix::triple_prduct +//check method FullMatrix::triple_product #include "../tests.h" #include @@ -38,7 +38,7 @@ void test (const unsigned int n, const unsigned int m) { // Create some random matrices FullMatrix A(n,n); - FullMatrix C(m,m); + FullMatrix C(m,m); FullMatrix B(n,m); FullMatrix D(m,n); FullMatrix Bt(m,n); @@ -95,7 +95,7 @@ void test (const unsigned int n, const unsigned int m) aux2.triple_product(A, Dt, Bt, true, true); aux2.add(-1., S1); diff(aux2); - + aux4 = 0.; aux4.triple_product(C, Bt, D, true, false); aux4.add(-1., S2); @@ -122,4 +122,4 @@ main () test(3,4); test(4,7); -} +} -- 2.39.5