From bd64a92a5d352a4538081a8594533f05c2f6a31c Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 25 May 2000 09:55:27 +0000 Subject: [PATCH] Fix. git-svn-id: https://svn.dealii.org/trunk@2942 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/wave-test-3.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/deal.II/wave-test-3.cc b/tests/deal.II/wave-test-3.cc index 4f5057ff95..65ed9b3826 100644 --- a/tests/deal.II/wave-test-3.cc +++ b/tests/deal.II/wave-test-3.cc @@ -5605,7 +5605,7 @@ void TimeStep_Dual::do_initial_step () { UserMatrix system_matrix (system_sparsity, parameters.preconditioning); system_matrix.copy_from (mass_matrix); - constraints.condense (system_matrix); + constraints.condense (static_cast&>(system_matrix)); const unsigned int solver_steps1 = solve (system_matrix, u, tmp_u_bar), solver_steps2 = solve (system_matrix, v, tmp_v_bar); @@ -5671,7 +5671,7 @@ void TimeStep_Dual::do_timestep () parameters.theta * parameters.theta, laplace_matrix); - constraints.condense (system_matrix); + constraints.condense (static_cast&>(system_matrix)); if (parameters.extrapolate_old_solutions) // solve with a hopefully good guess @@ -5709,7 +5709,7 @@ void TimeStep_Dual::do_timestep () const unsigned int solver_steps1 = solve (system_matrix, v, right_hand_side1); system_matrix.copy_from (mass_matrix); - constraints.condense (system_matrix); + constraints.condense (static_cast&>(system_matrix)); if (true) { Vector tmp (right_hand_side2.size()); @@ -7936,7 +7936,7 @@ assemble_vectors (right_hand_side1, right_hand_side2); parameters.theta * parameters.theta, laplace_matrix); - constraints.condense (system_matrix); + constraints.condense (static_cast&>(system_matrix)); if (parameters.extrapolate_old_solutions) // solve with a hopefully good guess @@ -7969,7 +7969,7 @@ assemble_vectors (right_hand_side1, right_hand_side2); const unsigned int solver_steps1 = solve (system_matrix, u, right_hand_side1); system_matrix.copy_from (mass_matrix); - constraints.condense (system_matrix); + constraints.condense (static_cast&>(system_matrix)); if (true) { Vector tmp (right_hand_side2.size()); -- 2.39.5