From: Timo Heister Date: Thu, 31 May 2012 17:03:59 +0000 (+0000) Subject: step-42: fix deadlock with many CPUs X-Git-Tag: v8.0.0~2542 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fab73641a20ee8b273504385a97542a2ce430a2c;p=dealii.git step-42: fix deadlock with many CPUs git-svn-id: https://svn.dealii.org/trunk@25588 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index 5683e4af2a..1f434510dd 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -794,7 +794,7 @@ void Step4::assemble_nl_system (TrilinosWrappers::MPI::Vector &u) }; system_matrix_newton.compress (); - system_rhs_newton.compress (); + system_rhs_newton.compress (Add); } template