Searched refs:coneOrientation (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/dm/impls/plex/ |
| H A D | plex.c | 3494 PetscErrorCode DMPlexGetConeOrientation(DM dm, PetscInt p, const PetscInt *coneOrientation[]) in DMPlexGetConeOrientation() argument 3504 if (dof) PetscAssertPointer(coneOrientation, 3); in DMPlexGetConeOrientation() 3508 *coneOrientation = &mesh->coneOrientations[off]; in DMPlexGetConeOrientation() 3531 PetscErrorCode DMPlexSetConeOrientation(DM dm, PetscInt p, const PetscInt coneOrientation[]) in DMPlexSetConeOrientation() argument 3540 if (dof) PetscAssertPointer(coneOrientation, 3); in DMPlexSetConeOrientation() 3546 PetscInt cdof, o = coneOrientation[c]; in DMPlexSetConeOrientation() 3553 for (c = 0; c < dof; ++c) mesh->coneOrientations[off + c] = coneOrientation[c]; in DMPlexSetConeOrientation() 3611 …rrorCode DMPlexInsertConeOrientation(DM dm, PetscInt p, PetscInt conePos, PetscInt coneOrientation) in DMPlexInsertConeOrientation() argument 3626 mesh->coneOrientations[off + conePos] = coneOrientation; in DMPlexInsertConeOrientation()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | DMPlex.pyx | 647 def insertConeOrientation(self, p: int, conePos: int, coneOrientation: int) -> None: 658 coneOrientation 669 cdef PetscInt cconeOrientation = asInt(coneOrientation)
|