Lines Matching refs:numSubCells
3174 PetscInt numSubVertices, firstSubVertex, numSubCells; in DMPlexCreateSubmesh_Uninterpolated() local
3186 PetscCall(DMLabelGetStratumSize(subpointMap, 2, &numSubCells)); in DMPlexCreateSubmesh_Uninterpolated()
3187 PetscCall(DMPlexSetChart(subdm, 0, numSubCells + numSubFaces + numSubVertices)); in DMPlexCreateSubmesh_Uninterpolated()
3190 firstSubVertex = numSubCells; in DMPlexCreateSubmesh_Uninterpolated()
3191 firstSubFace = numSubCells + numSubVertices; in DMPlexCreateSubmesh_Uninterpolated()
3197 for (c = 0; c < numSubCells; ++c) PetscCall(DMPlexSetConeSize(subdm, c, 1)); in DMPlexCreateSubmesh_Uninterpolated()
3205 for (c = 0; c < numSubCells; ++c) { in DMPlexCreateSubmesh_Uninterpolated()
3968 PetscInt numSubVertices, firstSubVertex, numSubCells, *subCells = NULL; in DMPlexCreateCohesiveSubmesh_Uninterpolated() local
3980 PetscCall(DMLabelGetStratumSize(subpointMap, 2, &numSubCells)); in DMPlexCreateCohesiveSubmesh_Uninterpolated()
3981 PetscCall(DMPlexSetChart(subdm, 0, numSubCells + numSubFaces + numSubVertices)); in DMPlexCreateCohesiveSubmesh_Uninterpolated()
3984 firstSubVertex = numSubCells; in DMPlexCreateCohesiveSubmesh_Uninterpolated()
3985 firstSubFace = numSubCells + numSubVertices; in DMPlexCreateCohesiveSubmesh_Uninterpolated()
3989 for (c = 0; c < numSubCells; ++c) PetscCall(DMPlexSetConeSize(subdm, c, 1)); in DMPlexCreateCohesiveSubmesh_Uninterpolated()
3996 for (c = 0; c < numSubCells; ++c) { in DMPlexCreateCohesiveSubmesh_Uninterpolated()
4022 for (negsubcell = 0; negsubcell < numSubCells; ++negsubcell) { in DMPlexCreateCohesiveSubmesh_Uninterpolated()
4025 …PetscCheck(negsubcell != numSubCells, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Could not find negati… in DMPlexCreateCohesiveSubmesh_Uninterpolated()
4094 …PetscInt numRoots, numLeaves, numSubRoots = numSubCells + numSubFaces + numSubVertices, … in DMPlexCreateCohesiveSubmesh_Uninterpolated()