Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
arng40 committed Dec 9, 2024
1 parent 38815d9 commit 5d3d677
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/coreComponents/mainInterface/ProblemManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,23 +166,22 @@ void ProblemManager::problemSetup()

postInputInitializationRecursive();

LogPart logPart( "Mesh generation" );
logPart.begin();
LogPart meshLogPart( "Mesh generation" );
meshLogPart.begin();
generateMesh();
logPart.end();
meshLogPart.end();

// initialize_postMeshGeneration();
LogPart logPart( "NumericalMethods" );
logPart.begin();
LogPart nmLogPart( "NumericalMethods" );
nmLogPart.begin();
applyNumericalMethods();

LogPart logPart( "Mesh data registration :" );
logPart.begin();
LogPart meshDataLogPart( "Mesh data registration :" );
meshDataLogPart.begin();
registerDataOnMeshRecursive( getDomainPartition().getMeshBodies() );

LogPart logPart( "Group & subgroups initializatf:H6svfHYlX:KJr!@gIqya-3J8GYGj\yz9;GAg?~
ion" );
logPart.begin();
LogPart grpLogPart( "Group & subgroups initialization" );
grpLogPart.begin();
initialize();

importFields();
Expand Down

0 comments on commit 5d3d677

Please sign in to comment.