From 8a66ad99c5e6cde129c44a3ca786d8fa2cd909de Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 14 Mar 2010 01:18:10 +0000 Subject: [PATCH] Remove one compile error. Others remain. git-svn-id: https://svn.dealii.org/trunk@20821 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/multigrid/transfer_04.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/multigrid/transfer_04.cc b/tests/multigrid/transfer_04.cc index ea3fb3b714..11e246a1a0 100644 --- a/tests/multigrid/transfer_04.cc +++ b/tests/multigrid/transfer_04.cc @@ -292,14 +292,14 @@ void check_smoother(const FiniteElement& fe) ScalingMatrix s1(-1); ScalingMatrix s2(2.); ScalingMatrix s8(8.); - + MGLevelObject > matrices(0, tr.n_levels()-1); matrices[0] = s1; matrices[1] = s2; matrices[2] = s8; typedef PreconditionJacobi > RELAX; - MGSmootherPrecondition > smoother(mem); + MGSmootherPrecondition, RELAX, Vector > smoother(mem); RELAX::AdditionalData smoother_data; smoother.initialize(matrices, smoother_data); smoother.set_steps(1); -- 2.39.5