From: Timo Heister Date: Fri, 3 May 2013 23:35:58 +0000 (+0000) Subject: step32: avoid min/max temperature computation for now X-Git-Tag: v8.0.0~120^2~56 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f3035ed1a81ec69b8aa721ed75cde4d04d6ad70;p=dealii.git step32: avoid min/max temperature computation for now git-svn-id: https://svn.dealii.org/branches/branch_unify_linear_algebra@29452 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 5476260e27..07c0337987 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -3143,7 +3143,9 @@ namespace Step32 temperature[0] *= -1.0; Utilities::MPI::max (temperature, MPI_COMM_WORLD, global_temperature); global_temperature[0] *= -1.0; - + global_temperature[0]=0.0; // TODO + global_temperature[1]=1.0; + pcout << " Temperature range: " << global_temperature[0] << ' ' << global_temperature[1] << std::endl;