From: Wolfgang Bangerth Date: Sun, 14 Mar 2010 01:18:10 +0000 (+0000) Subject: Remove one compile error. Others remain. X-Git-Tag: v8.0.0~6327 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0fa87bebcbfe6c9fdcb8982b9b336121119d7e4;p=dealii.git Remove one compile error. Others remain. git-svn-id: https://svn.dealii.org/trunk@20821 0785d39b-7218-0410-832d-ea1e28bc413d --- 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);