From: Wolfgang Bangerth Date: Thu, 25 May 2000 09:55:27 +0000 (+0000) Subject: Fix. X-Git-Tag: v8.0.0~20464 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1155c40ba4e657c2a3453dfafa86297e68bfec24;p=dealii.git Fix. git-svn-id: https://svn.dealii.org/trunk@2942 0785d39b-7218-0410-832d-ea1e28bc413d --- 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());