Skip to content

Commit b774da5

Browse files
committed
Fix for cell_partitioner
1 parent 217d924 commit b774da5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mesh.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ create_cube_mesh(MPI_Comm comm, std::size_t target_dofs, bool target_dofs_total,
179179
else
180180
MPI_Comm_dup(comm, &sub_comm);
181181

182-
auto cell_part = dolfinx::mesh::create_cell_partitioner(
183-
dolfinx::mesh::GhostMode::none, graph_part, 2);
182+
auto cell_part = dolfinx::mesh::create_cell_partitioner(dolfinx::mesh::GhostMode::none,
183+
graph_part, 2);
184184
auto mesh = dolfinx::mesh::create_box(
185185
comm, sub_comm, {{{0.0, 0.0, 0.0}, {1.0, 1.0, 1.0}}}, {Nx, Ny, Nz},
186186
dolfinx::mesh::CellType::tetrahedron, cell_part);

0 commit comments

Comments
 (0)