@@ -55,7 +55,7 @@ CIncEulerSolver::CIncEulerSolver(CGeometry *geometry, CConfig *config, unsigned
5555 bool time_stepping = config->GetTime_Marching () == TIME_MARCHING::TIME_STEPPING;
5656 bool adjoint = (config->GetContinuous_Adjoint ()) || (config->GetDiscrete_Adjoint ());
5757 const bool centered = config->GetKind_ConvNumScheme_Flow () == SPACE_CENTERED;
58- const bool energy_multicomponent = (( config->GetKind_FluidModel () == FLUID_MIXTURE) && config->GetEnergy_Equation () );
58+ const bool energy_multicomponent = config->GetKind_FluidModel () == FLUID_MIXTURE && config->GetEnergy_Equation ();
5959
6060 /* A grid is defined as dynamic if there's rigid grid movement or grid deformation AND the problem is time domain */
6161 dynamic_grid = config->GetDynamic_Grid ();
@@ -2218,7 +2218,7 @@ void CIncEulerSolver::BC_Far_Field(CGeometry *geometry, CSolver **solver_contain
22182218
22192219 const bool implicit = config->GetKind_TimeIntScheme () == EULER_IMPLICIT;
22202220 const bool viscous = config->GetViscous ();
2221- const bool energy_multicomponent = (( config->GetKind_FluidModel () == FLUID_MIXTURE) && ( config->GetEnergy_Equation ()) );
2221+ const bool energy_multicomponent = config->GetKind_FluidModel () == FLUID_MIXTURE && config->GetEnergy_Equation ();
22222222
22232223 su2double Normal[MAXNDIM] = {0.0 };
22242224
@@ -2362,7 +2362,7 @@ void CIncEulerSolver::BC_Inlet(CGeometry *geometry, CSolver **solver_container,
23622362
23632363 const bool implicit = (config->GetKind_TimeIntScheme () == EULER_IMPLICIT);
23642364 const bool viscous = config->GetViscous ();
2365- const bool energy_multicomponent = (( config->GetKind_FluidModel () == FLUID_MIXTURE) && ( config->GetEnergy_Equation ()) );
2365+ const bool energy_multicomponent = config->GetKind_FluidModel () == FLUID_MIXTURE && config->GetEnergy_Equation ();
23662366
23672367 string Marker_Tag = config->GetMarker_All_TagBound (val_marker);
23682368
@@ -2623,7 +2623,7 @@ void CIncEulerSolver::BC_Outlet(CGeometry *geometry, CSolver **solver_container,
26232623
26242624 const bool implicit = (config->GetKind_TimeIntScheme () == EULER_IMPLICIT);
26252625 const bool viscous = config->GetViscous ();
2626- const bool energy_multicomponent = (( config->GetKind_FluidModel () == FLUID_MIXTURE) && ( config->GetEnergy_Equation ()) );
2626+ const bool energy_multicomponent = config->GetKind_FluidModel () == FLUID_MIXTURE && config->GetEnergy_Equation ();
26272627 string Marker_Tag = config->GetMarker_All_TagBound (val_marker);
26282628
26292629 su2double Normal[MAXNDIM] = {0.0 };
0 commit comments