@@ -96,7 +96,7 @@ class CSolverFactory {
9696 * \param[in] adjoint - Boolean indicating whether a primal or adjoint solver should be allocated
9797 * \return - A pointer to the allocated turbulent solver
9898 */
99- static CSolver* createTurbSolver (ENUM_TURB_MODEL kindTurbModel, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, int adjoint);
99+ static CSolver* CreateTurbSolver (ENUM_TURB_MODEL kindTurbModel, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, int adjoint);
100100
101101 /* !
102102 * \brief Create a heat solver
@@ -107,7 +107,7 @@ class CSolverFactory {
107107 * \param[in] adjoint - Boolean indicating whether a primal or adjoint solver should be allocated
108108 * \return - A pointer to the allocated heat solver
109109 */
110- static CSolver* createHeatSolver (CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, bool adjoint);
110+ static CSolver* CreateHeatSolver (CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, bool adjoint);
111111
112112 /* !
113113 * \brief Create a mesh solver
@@ -118,7 +118,7 @@ class CSolverFactory {
118118 * \param[in] adjoint - Boolean indicating whether a primal or adjoint solver should be allocated
119119 * \return - A pointer to the allocated mesh solver
120120 */
121- static CSolver* createMeshSolver (CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, bool adjoint);
121+ static CSolver* CreateMeshSolver (CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel, bool adjoint);
122122
123123 /* !
124124 * \brief Create a DG solver
@@ -128,7 +128,7 @@ class CSolverFactory {
128128 * \param[in] iMGLevel - The multigrid level
129129 * \return - A pointer to the allocated DG solver
130130 */
131- static CSolver* createDGSolver (SUB_SOLVER_TYPE kindDGSolver, CGeometry *geometry, CConfig *config, int iMGLevel);
131+ static CSolver* CreateDGSolver (SUB_SOLVER_TYPE kindDGSolver, CGeometry *geometry, CConfig *config, int iMGLevel);
132132
133133 /* !
134134 * \brief Create a flow solver
@@ -139,7 +139,7 @@ class CSolverFactory {
139139 * \param[in] iMGLevel - The multigrid level
140140 * \return - A pointer to the allocated flow solver
141141 */
142- static CSolver* createFlowSolver (SUB_SOLVER_TYPE kindFlowSolver, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel);
142+ static CSolver* CreateFlowSolver (SUB_SOLVER_TYPE kindFlowSolver, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel);
143143
144144 /* !
145145 * \brief Generic routine to create a solver
@@ -150,7 +150,7 @@ class CSolverFactory {
150150 * \param[in] iMGLevel - The multigrid level
151151 * \return - A pointer to the allocated solver
152152 */
153- static CSolver* createSubSolver (SUB_SOLVER_TYPE kindSolver, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel);
153+ static CSolver* CreateSubSolver (SUB_SOLVER_TYPE kindSolver, CSolver **solver, CGeometry *geometry, CConfig *config, int iMGLevel);
154154
155155public:
156156
@@ -168,7 +168,7 @@ class CSolverFactory {
168168 * \param[in] iMGLevel - The multigrid level
169169 * \return - Pointer to the allocated solver array
170170 */
171- static CSolver** createSolverContainer (ENUM_MAIN_SOLVER kindSolver, CConfig *config, CGeometry *geometry, int iMGLevel);
171+ static CSolver** CreateSolverContainer (ENUM_MAIN_SOLVER kindSolver, CConfig *config, CGeometry *geometry, int iMGLevel);
172172
173173
174174 /* !
0 commit comments