From: Wolfgang Bangerth Date: Fri, 21 Jan 2011 22:29:03 +0000 (+0000) Subject: Make clear what kind of operation we want in calling compress(). X-Git-Tag: v8.0.0~4456 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1aa1239311e4dfa47c136bc45f048546a577e110;p=dealii.git Make clear what kind of operation we want in calling compress(). git-svn-id: https://svn.dealii.org/trunk@23236 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index b4d8d954e3..068f301e6d 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -2251,7 +2251,7 @@ void BoussinesqFlowProblem::assemble_stokes_system () StokesSystem (stokes_fe)); stokes_matrix.compress(); - stokes_rhs.compress(); + stokes_rhs.compress(Add); rebuild_stokes_matrix = false;