Home
last modified time | relevance | path

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

/petsc/src/dm/impls/forest/p4est/
H A Dpforest.h816 PetscBool isDepth, isGhost, isVTK, isDim, isCellType; in DMSetUp_pforest() local
829 PetscCall(PetscStrcmp(name, "ghost", &isGhost)); in DMSetUp_pforest()
830 if (isGhost) continue; in DMSetUp_pforest()
974 PetscBool isDepth, isCellType, isGhost, isVTK; in DMSetUp_pforest() local
985 PetscCall(PetscStrcmp(name, "ghost", &isGhost)); in DMSetUp_pforest()
986 if (isGhost) continue; in DMSetUp_pforest()
3118 PetscBool isDepth, isCellType, isGhost, isVTK, isSpmap; in DMPforestLabelsInitialize() local
3132 PetscCall(PetscStrcmp(name, "ghost", &isGhost)); in DMPforestLabelsInitialize()
3133 if (isGhost) { in DMPforestLabelsInitialize()
3526 PetscBool isDepth, isCellType, isGhost, isVTK; in DMPforestLabelsFinalize() local
[all …]
/petsc/src/dm/impls/plex/
H A Dplexsubmesh.c3398 PetscBool *isGhost = NULL; in DMPlexCreateSubmeshGeneric_Interpolated() local
3420 PetscCall(PetscMalloc1(pEnd - pStart, &isGhost)); in DMPlexCreateSubmeshGeneric_Interpolated()
3421 for (p = 0; p < pEnd - pStart; ++p) isGhost[p] = PETSC_FALSE; in DMPlexCreateSubmeshGeneric_Interpolated()
3422 for (p = 0; p < nleaves; ++p) isGhost[(ilocal ? ilocal[p] : p) - pStart] = PETSC_TRUE; in DMPlexCreateSubmeshGeneric_Interpolated()
3428 if (isGhost && isGhost[points[p] - pStart]) continue; in DMPlexCreateSubmeshGeneric_Interpolated()
3436 PetscCall(PetscFree(isGhost)); in DMPlexCreateSubmeshGeneric_Interpolated()