From 9654c6746e606fc7a7c98e5072b838c600660aaf Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 25 Jun 2018 12:56:50 +0200 Subject: [PATCH] Put variables on separate lines --- examples/step-35/step-35.cc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/examples/step-35/step-35.cc b/examples/step-35/step-35.cc index 6ed7dcabab..75ab69cfb3 100644 --- a/examples/step-35/step-35.cc +++ b/examples/step-35/step-35.cc @@ -100,7 +100,9 @@ namespace Step35 Method form; - double dt, initial_time, final_time; + double dt; + double initial_time; + double final_time; double Reynolds; @@ -112,7 +114,8 @@ namespace Step35 unsigned int vel_Krylov_size; unsigned int vel_off_diagonals; unsigned int vel_update_prec; - double vel_eps, vel_diag_strength; + double vel_eps; + double vel_diag_strength; bool verbose; unsigned int output_interval; @@ -438,7 +441,9 @@ namespace Step35 RunTimeParameters::Method type; const unsigned int deg; - const double dt, t_0, T; + const double dt; + const double t_0; + const double T; const double Re; EquationData::Velocity vel_exact; -- 2.39.5