1 /* Very minimal unstructured DM */ 2 #if !defined(__PETSCDMSLICED_H) 3 #define __PETSCDMSLICED_H 4 5 #include "petscdm.h" 6 PETSC_EXTERN_CXX_BEGIN 7 8 extern PetscErrorCode DMSlicedCreate(MPI_Comm,DM*); 9 extern PetscErrorCode DMSlicedSetPreallocation(DM,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 10 extern PetscErrorCode DMSlicedSetBlockFills(DM,const PetscInt*,const PetscInt*); 11 extern PetscErrorCode DMSlicedSetGhosts(DM,PetscInt,PetscInt,PetscInt,const PetscInt[]); 12 13 PETSC_EXTERN_CXX_END 14 #endif 15