Skip to content

Commit 5ce56de

Browse files
author
DENEL Bertrand
committed
catalog
1 parent 1199477 commit 5ce56de

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

src/coreComponents/mesh/mpiCommunications/MeshPartitioner.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ vtk::AllMeshes MeshPartitioner::partitionMeshes( vtk::AllMeshes & mesh, MPI_Comm
121121
// ====================================================================
122122
// STEP 1: Compute partitioning, specific to subclass
123123
// ====================================================================
124-
std::cout<<"Inthere"<<std::endl;
125124
array1d< int64_t > const partitioning = computePartitioning( mesh, comm );
126125

127126
// ====================================================================

src/coreComponents/mesh/mpiCommunications/ParticleCartesianPartitioner.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ParticleCartesianPartitioner : public CartesianPartitioner
4949
* @brief Return the name of the VTKMeshGenerator in object Catalog.
5050
* @return string that contains the key name to VTKMeshGenerator in the Catalog
5151
*/
52-
static string catalogName() { return "ParticleCartesian"; }
52+
static string catalogName() { return "ParticleCartesianPartitioner"; }
5353

5454

5555
void updateSizes( arrayView1d< real64 > const domainL,

src/coreComponents/schema/schema.xsd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@
331331
<xsd:selector xpath="LayeredMeshPartitioner" />
332332
<xsd:field xpath="@name" />
333333
</xsd:unique>
334-
<xsd:unique name="PartitionerParticleCartesianUniqueName">
335-
<xsd:selector xpath="ParticleCartesian" />
334+
<xsd:unique name="PartitionerParticleCartesianPartitionerUniqueName">
335+
<xsd:selector xpath="ParticleCartesianPartitioner" />
336336
<xsd:field xpath="@name" />
337337
</xsd:unique>
338338
</xsd:element>
@@ -2683,7 +2683,7 @@ Information output from lower logLevels is added with the desired log level
26832683
<xsd:element name="CartesianPartitioner" type="CartesianPartitionerType" />
26842684
<xsd:element name="CellGraphPartitioner" type="CellGraphPartitionerType" />
26852685
<xsd:element name="LayeredMeshPartitioner" type="LayeredMeshPartitionerType" />
2686-
<xsd:element name="ParticleCartesian" type="ParticleCartesianType" />
2686+
<xsd:element name="ParticleCartesianPartitioner" type="ParticleCartesianPartitionerType" />
26872687
</xsd:choice>
26882688
</xsd:complexType>
26892689
<xsd:complexType name="CartesianPartitionerType">
@@ -2712,7 +2712,7 @@ Information output from lower logLevels is added with the desired log level
27122712
<!--name => A name is required for any non-unique nodes-->
27132713
<xsd:attribute name="name" type="groupName" use="required" />
27142714
</xsd:complexType>
2715-
<xsd:complexType name="ParticleCartesianType">
2715+
<xsd:complexType name="ParticleCartesianPartitionerType">
27162716
<!--partitionCounts => Number of partitions in each direction [nx, ny, nz]-->
27172717
<xsd:attribute name="partitionCounts" type="integer_array" default="{0}" />
27182718
<!--name => A name is required for any non-unique nodes-->

src/coreComponents/schema/schema.xsd.other

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,13 +553,13 @@
553553
<xsd:element name="CartesianPartitioner" type="CartesianPartitionerType" />
554554
<xsd:element name="CellGraphPartitioner" type="CellGraphPartitionerType" />
555555
<xsd:element name="LayeredMeshPartitioner" type="LayeredMeshPartitionerType" />
556-
<xsd:element name="ParticleCartesian" type="ParticleCartesianType" />
556+
<xsd:element name="ParticleCartesianPartitioner" type="ParticleCartesianPartitionerType" />
557557
</xsd:choice>
558558
</xsd:complexType>
559559
<xsd:complexType name="CartesianPartitionerType" />
560560
<xsd:complexType name="CellGraphPartitionerType" />
561561
<xsd:complexType name="LayeredMeshPartitionerType" />
562-
<xsd:complexType name="ParticleCartesianType" />
562+
<xsd:complexType name="ParticleCartesianPartitionerType" />
563563
<xsd:complexType name="SolversType">
564564
<xsd:choice minOccurs="0" maxOccurs="unbounded">
565565
<xsd:element name="AcousticDG" type="AcousticDGType" />

0 commit comments

Comments
 (0)