Home
last modified time | relevance | path

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

/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DDMPlex.pyx622 def insertCone(self, p: int, conePos: int, conePoint: int) -> None:
631 conePos
643 cdef PetscInt cconePos = asInt(conePos)
647 def insertConeOrientation(self, p: int, conePos: int, coneOrientation: int) -> None:
656 conePos
668 cdef PetscInt cconePos = asInt(conePos)
/petsc/src/dm/impls/plex/
H A Dplex.c3573 PetscErrorCode DMPlexInsertCone(DM dm, PetscInt p, PetscInt conePos, PetscInt conePoint) in DMPlexInsertCone() argument
3586conePos < 0) && !(conePos >= dof), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Co… in DMPlexInsertCone()
3589 mesh->cones[off + conePos] = conePoint; in DMPlexInsertCone()
3611 PetscErrorCode DMPlexInsertConeOrientation(DM dm, PetscInt p, PetscInt conePos, PetscInt coneOrient… in DMPlexInsertConeOrientation() argument
3623conePos < 0) && !(conePos >= dof), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Co… in DMPlexInsertConeOrientation()
3626 mesh->coneOrientations[off + conePos] = coneOrientation; in DMPlexInsertConeOrientation()