Lines Matching refs:coneSize
288 PetscInt coneSize, c; in InsertFace() local
292 PetscCall(DMPlexGetConeSize(dm, cell, &coneSize)); in InsertFace()
293 for (c = 0; c < coneSize; ++c) in InsertFace()
295 …coneSize, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %" PetscInt_FMT " could not be inserted in c… in InsertFace()
304 PetscInt coneSize, newCone[16], newOrnt[16]; in ReorderPolygon() local
308 PetscCall(DMPlexGetConeSize(dm, cell, &coneSize)); in ReorderPolygon()
311 for (PetscInt c = 1; c < coneSize; ++c) { in ReorderPolygon()
317 for (c2 = 0; c2 < coneSize; ++c2) { in ReorderPolygon()
327 …PetscCheck(c2 < coneSize, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %" PetscInt_FMT " could not … in ReorderPolygon()
335 PetscCall(DMPlexGetCone(dm, newCone[coneSize - 1], &fcone)); in ReorderPolygon()
337 vertex = newOrnt[coneSize - 1] ? fcone[0] : fcone[1]; in ReorderPolygon()