Searched refs:coveringPoints (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | DMPlex.pyx | 1124 cdef const PetscInt *coveringPoints = NULL 1126 CHKERR(DMPlexGetMeet(self.dm, numPoints, ipoints, &numCoveringPoints, &coveringPoints)) 1128 return array_i(numCoveringPoints, coveringPoints) 1130 … CHKERR(DMPlexRestoreMeet(self.dm, numPoints, ipoints, &numCoveringPoints, &coveringPoints)) 1150 cdef const PetscInt *coveringPoints = NULL 1152 CHKERR(DMPlexGetJoin(self.dm, numPoints, ipoints, &numCoveringPoints, &coveringPoints)) 1154 return array_i(numCoveringPoints, coveringPoints) 1156 … CHKERR(DMPlexRestoreJoin(self.dm, numPoints, ipoints, &numCoveringPoints, &coveringPoints)) 1176 cdef const PetscInt *coveringPoints = NULL 1178 CHKERR(DMPlexGetFullJoin(self.dm, numPoints, ipoints, &numCoveringPoints, &coveringPoints)) [all …]
|
| /petsc/src/dm/impls/plex/ |
| H A D | plex.c | 5052 … numPoints, const PetscInt points[], PetscInt *numCoveringPoints, const PetscInt *coveringPoints[]) in DMPlexGetMeet() argument 5064 PetscAssertPointer(coveringPoints, 5); in DMPlexGetMeet() 5092 *coveringPoints = meet[i]; in DMPlexGetMeet()
|