Skip to content

Commit

Permalink
uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsettgast committed Aug 16, 2024
1 parent 9651c47 commit f080cbf
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/cmake/GeosxOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ option( GEOS_INSTALL_SCHEMA "Enables schema generation and installation" ON )

option( GEOS_BUILD_OBJ_LIBS "Builds coreComponent modules as object libraries" OFF )

option( GEOS_BUILD_SHARED_LIBS "Builds geosx_core as a shared library " OFF )
option( GEOS_BUILD_SHARED_LIBS "Builds geosx_core as a shared library " ON )

set( GEOS_PARALLEL_COMPILE_JOBS "" CACHE STRING "Maximum number of concurrent compilation jobs" )
if( GEOS_PARALLEL_COMPILE_JOBS )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ BrineEnthalpy::BrineEnthalpy( string const & name,
GEOS_UNUSED_VAR( printTable );
// if( printTable )
// {
// m_CO2EnthalpyTable->print( m_CO2EnthalpyTable->getName() );
// m_brineEnthalpyTable->print( m_brineEnthalpyTable->getName() );
// m_CO2EnthalpyTable->print( m_CO2EnthalpyTable->getName() );
// m_brineEnthalpyTable->print( m_brineEnthalpyTable->getName() );
// }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ CO2Solubility::CO2Solubility( string const & name,
GEOS_UNUSED_VAR( printTable );
// if( printTable )
// {
// m_CO2SolubilityTable->print( m_CO2SolubilityTable->getName() );
// m_WaterVapourisationTable->print( m_WaterVapourisationTable->getName() );
// m_CO2SolubilityTable->print( m_CO2SolubilityTable->getName() );
// m_WaterVapourisationTable->print( m_WaterVapourisationTable->getName() );
// }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ EzrokhiBrineDensity::EzrokhiBrineDensity( string const & name,

// if( printTable )
// {
// m_waterSatDensityTable->print( m_waterSatDensityTable->getName() );
// m_waterSatPressureTable->print( m_waterSatPressureTable->getName() );
// m_waterSatDensityTable->print( m_waterSatDensityTable->getName() );
// m_waterSatPressureTable->print( m_waterSatPressureTable->getName() );
// }
}

Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/physicsSolvers/FieldStatisticsBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class FieldStatisticsBase : public TaskBase
void postInputInitialization() override
{
Group & problemManager = this->getGroupByPath( "/Problem" );
Group & physicsSolverManager = problemManager.getGroup("Solvers");
Group & physicsSolverManager = problemManager.getGroup( "Solvers" );

m_solver = physicsSolverManager.getGroupPointer< SOLVER >( m_solverName );
GEOS_THROW_IF( m_solver == nullptr,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void StencilDataCollection::postInputInitialization()
Group & problemManager = this->getGroupByPath( "/Problem" );

{ // find targeted solver
Group & physicsSolverManager = problemManager.getGroup("Solvers");
Group & physicsSolverManager = problemManager.getGroup( "Solvers" );

m_solver = physicsSolverManager.getGroupPointer< FlowSolverBase >( m_solverName );
GEOS_THROW_IF( m_solver == nullptr,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ PoromechanicsInitialization< POROMECHANICS_SOLVER >::
postInputInitialization()
{
Group & problemManager = this->getGroupByPath( "/Problem" );
Group & physicsSolverManager = problemManager.getGroup("Solvers");
Group & physicsSolverManager = problemManager.getGroup( "Solvers" );

GEOS_THROW_IF( !physicsSolverManager.hasGroup( m_poromechanicsSolverName ),
GEOS_FMT( "{}: {} solver named {} not found",
Expand All @@ -81,7 +81,7 @@ postInputInitialization()

if( !m_solidMechanicsStatisticsName.empty())
{
TasksManager & tasksManager = problemManager.getGroup<TasksManager>("Tasks");
TasksManager & tasksManager = problemManager.getGroup< TasksManager >( "Tasks" );

GEOS_THROW_IF( !tasksManager.hasGroup( m_solidMechanicsStatisticsName ),
GEOS_FMT( "{}: statistics task named {} not found",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ SolidMechanicsStateReset::~SolidMechanicsStateReset()
void SolidMechanicsStateReset::postInputInitialization()
{
Group & problemManager = this->getGroupByPath( "/Problem" );
Group & physicsSolverManager = problemManager.getGroup("Solvers");
Group & physicsSolverManager = problemManager.getGroup( "Solvers" );

GEOS_THROW_IF( !physicsSolverManager.hasGroup( m_solidSolverName ),
GEOS_FMT( "Task {}: physics solver named {} not found",
Expand Down

0 comments on commit f080cbf

Please sign in to comment.