From ef45c897414021d0278be624de50d6e0ac810472 Mon Sep 17 00:00:00 2001 From: Paul Dechamps <paul.dechamps@uliege.be> Date: Tue, 25 Mar 2025 02:47:42 +0100 Subject: [PATCH] (format) Fix format in solver --- blast/src/blSolver.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/blast/src/blSolver.h b/blast/src/blSolver.h index b882fb9..b846a5d 100644 --- a/blast/src/blSolver.h +++ b/blast/src/blSolver.h @@ -17,13 +17,13 @@ class BLAST_API Solver { private: - bldouble CFL0; ///< Initial CFL number. - unsigned int maxIt; ///< Maximum number of iterations. - bldouble tol; ///< Convergence tolerance. - unsigned int itFrozenJac0; ///< Number of iterations between which the - ///< Jacobian is frozen. - bldouble const gamma = 1.4; ///< Air heat capacity ratio. - bldouble Minf; ///< Freestream Mach number. + bldouble CFL0; ///< Initial CFL number. + unsigned int maxIt; ///< Maximum number of iterations. + bldouble tol; ///< Convergence tolerance. + unsigned int itFrozenJac0; ///< Number of iterations between which the + ///< Jacobian is frozen. + bldouble const gamma = 1.4; ///< Air heat capacity ratio. + bldouble Minf; ///< Freestream Mach number. Fluxes *sysMatrix; -- GitLab