1 #ifndef PETSCFECEED_H 2 #define PETSCFECEED_H 3 4 #include <petscfe.h> 5 6 #if defined(PETSC_HAVE_LIBCEED) 7 #include <ceed.h> 8 9 PETSC_EXTERN PetscErrorCode PetscFEGetCeedBasis(PetscFE, CeedBasis *); 10 PETSC_EXTERN PetscErrorCode PetscFESetCeed(PetscFE, Ceed); 11 #endif 12 13 #endif 14