From: heister Date: Fri, 3 May 2013 23:35:58 +0000 (+0000) Subject: step32: avoid min/max temperature computation for now X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d9b7db2d1e57e03352de67c40e6c4a1c0fe47e2;p=dealii-svn.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;