1cdef extern from * nogil: 2 3 ctypedef const char* PetscPartitionerType 4 PetscPartitionerType PETSCPARTITIONERPARMETIS 5 PetscPartitionerType PETSCPARTITIONERPTSCOTCH 6 PetscPartitionerType PETSCPARTITIONERCHACO 7 PetscPartitionerType PETSCPARTITIONERSIMPLE 8 PetscPartitionerType PETSCPARTITIONERSHELL 9 PetscPartitionerType PETSCPARTITIONERGATHER 10 PetscPartitionerType PETSCPARTITIONERMATPARTITIONING 11 PetscPartitionerType PETSCPARTITIONERMULTISTAGE 12 13 PetscErrorCode PetscPartitionerCreate(MPI_Comm, PetscPartitioner*) 14 PetscErrorCode PetscPartitionerDestroy(PetscPartitioner*) 15 PetscErrorCode PetscPartitionerView(PetscPartitioner, PetscViewer) 16 PetscErrorCode PetscPartitionerSetType(PetscPartitioner, PetscPartitionerType) 17 PetscErrorCode PetscPartitionerGetType(PetscPartitioner, PetscPartitionerType*) 18 PetscErrorCode PetscPartitionerSetFromOptions(PetscPartitioner) 19 PetscErrorCode PetscPartitionerSetUp(PetscPartitioner) 20 PetscErrorCode PetscPartitionerReset(PetscPartitioner) 21 22 PetscErrorCode PetscPartitionerShellSetPartition(PetscPartitioner, PetscInt, PetscInt*, PetscInt*) 23