From: bangerth Date: Tue, 7 Feb 2012 10:42:58 +0000 (+0000) Subject: Minor formatting changes. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7042b28b36b6fc9fa7a2f19c8e8cf6e26a696635;p=dealii-svn.git Minor formatting changes. git-svn-id: https://svn.dealii.org/trunk@25003 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-21/step-21.cc b/deal.II/examples/step-21/step-21.cc index 7f167dbdaa..46f7eea765 100644 --- a/deal.II/examples/step-21/step-21.cc +++ b/deal.II/examples/step-21/step-21.cc @@ -483,13 +483,13 @@ namespace Step21 double mobility_inverse (const double S, const double viscosity) { - return 1.0 /(1.0/viscosity * S * S + (1-S) * (1-S)); + return 1.0 / (1.0/viscosity * S * S + (1-S) * (1-S)); } double f_saturation (const double S, const double viscosity) { - return S*S /( S * S +viscosity * (1-S) * (1-S)); + return S*S / (S * S + viscosity * (1-S) * (1-S)); }