Home
last modified time | relevance | path

Searched refs:numGhostCells (Results 1 – 2 of 2) sorted by relevance

/petsc/src/dm/impls/plex/
H A Dplexsubmesh.c914 …ErrorCode DMPlexConstructGhostCells_Internal(DM dm, DMLabel label, PetscInt *numGhostCells, DM gdm) in DMPlexConstructGhostCells_Internal() argument
1030 if (numGhostCells) *numGhostCells = Ng; in DMPlexConstructGhostCells_Internal()
1054 PetscErrorCode DMPlexConstructGhostCells(DM dm, const char labelName[], PetscInt *numGhostCells, DM… in DMPlexConstructGhostCells() argument
1064 if (numGhostCells) PetscAssertPointer(numGhostCells, 3); in DMPlexConstructGhostCells()
1083 if (numGhostCells) *numGhostCells = Ng; in DMPlexConstructGhostCells()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DDMPlex.pyx2328 numGhostCells : int
2338 cdef PetscInt numGhostCells = 0
2340 CHKERR(DMPlexConstructGhostCells(self.dm, cname, &numGhostCells, &dmGhosted))
2342 return toInt(numGhostCells)