Skip to content

Commit

Permalink
Merge pull request #1658 from arcaneframework/dev/gg-refactor-edgeuni…
Browse files Browse the repository at this point in the history
…queidbuilder

Refactor class EdgeUniqueIdBuilder
  • Loading branch information
grospelliergilles authored Oct 2, 2024
2 parents 593472d + a9a09e3 commit ad66e8f
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 293 deletions.
3 changes: 3 additions & 0 deletions arcane/src/arcane/mesh/DynamicMeshIncrementalBuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include "arcane/utils/NotImplementedException.h"
#include "arcane/utils/NotSupportedException.h"
#include "arcane/utils/ITraceMng.h"
#include "arcane/utils/ValueConvert.h"

#include "arcane/core/ItemTypeMng.h"
#include "arcane/core/MeshUtils.h"
Expand Down Expand Up @@ -63,6 +64,8 @@ DynamicMeshIncrementalBuilder(DynamicMesh* mesh)
, m_has_amr(mesh->isAmrActivated())
, m_one_mesh_item_adder(new OneMeshItemAdder(this))
{
if (auto v = Convert::Type<Int32>::tryParseFromEnvironment("ARCANE_VERBOSE_MESH_BUILDER", true))
m_verbose = (v.value()!=0);
}

/*---------------------------------------------------------------------------*/
Expand Down
Loading

0 comments on commit ad66e8f

Please sign in to comment.