From 721e34a652e85ca998ab65c498e8e8dab82b4cf6 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 27 Nov 2007 01:35:52 +0000 Subject: [PATCH] Undo the previous changes that templatized a function without making it a template. This didn't compile, of course. The function is tested for the template case in other tests. git-svn-id: https://svn.dealii.org/trunk@15543 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/full_matrix_vector_01.cc | 8 ++++---- tests/bits/full_matrix_vector_02.cc | 8 ++++---- tests/bits/full_matrix_vector_05.cc | 8 ++++---- tests/bits/full_matrix_vector_06.cc | 4 ++-- tests/bits/full_matrix_vector_07.cc | 12 ++++++------ 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/tests/bits/full_matrix_vector_01.cc b/tests/bits/full_matrix_vector_01.cc index d4268b1fbe..a0278f51f0 100644 --- a/tests/bits/full_matrix_vector_01.cc +++ b/tests/bits/full_matrix_vector_01.cc @@ -22,8 +22,8 @@ #include -void test (Vector &v, - Vector &w) +void test (Vector &v, + Vector &w) { FullMatrix m(v.size(), v.size()); for (unsigned int i=0; i v (100); - Vector w (100); + Vector v (100); + Vector w (100); test (v,w); } catch (std::exception &exc) diff --git a/tests/bits/full_matrix_vector_02.cc b/tests/bits/full_matrix_vector_02.cc index 1b11b75abf..3a493e427b 100644 --- a/tests/bits/full_matrix_vector_02.cc +++ b/tests/bits/full_matrix_vector_02.cc @@ -22,8 +22,8 @@ #include -void test (Vector &v, - Vector &w) +void test (Vector &v, + Vector &w) { FullMatrix m(v.size(), v.size()); for (unsigned int i=0; i v (100); - Vector w (100); + Vector v (100); + Vector w (100); test (v,w); } catch (std::exception &exc) diff --git a/tests/bits/full_matrix_vector_05.cc b/tests/bits/full_matrix_vector_05.cc index dd81350378..0619f826f4 100644 --- a/tests/bits/full_matrix_vector_05.cc +++ b/tests/bits/full_matrix_vector_05.cc @@ -22,8 +22,8 @@ #include -void test (Vector &v, - Vector &w) +void test (Vector &v, + Vector &w) { FullMatrix m(v.size(), v.size()); for (unsigned int i=0; i v (100); - Vector w (100); + Vector v (100); + Vector w (100); test (v,w); } catch (std::exception &exc) diff --git a/tests/bits/full_matrix_vector_06.cc b/tests/bits/full_matrix_vector_06.cc index 46bbb3ebed..2544ee0020 100644 --- a/tests/bits/full_matrix_vector_06.cc +++ b/tests/bits/full_matrix_vector_06.cc @@ -22,7 +22,7 @@ #include -void test (Vector &v) +void test (Vector &v) { FullMatrix m(v.size(), v.size()); for (unsigned int i=0; i v (100); + Vector v (100); test (v); } catch (std::exception &exc) diff --git a/tests/bits/full_matrix_vector_07.cc b/tests/bits/full_matrix_vector_07.cc index 1e6b8db69e..8115c35491 100644 --- a/tests/bits/full_matrix_vector_07.cc +++ b/tests/bits/full_matrix_vector_07.cc @@ -22,9 +22,9 @@ #include -void test (Vector &v, - Vector &w, - Vector &x) +void test (Vector &v, + Vector &w, + Vector &x) { FullMatrix m(v.size(), v.size()); for (unsigned int i=0; i v (100); - Vector w (100); - Vector x (100); + Vector v (100); + Vector w (100); + Vector x (100); test (v,w,x); } catch (std::exception &exc) -- 2.39.5