interfaces are not included in petsc version<=3.16.x yet

This commit is contained in:
Daniel Otto de Mentock 2023-08-04 14:42:51 +02:00
parent d428024d4d
commit cc77d5c69b
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ module discretization_mesh
real(pREAL), dimension(:,:,:), allocatable :: & real(pREAL), dimension(:,:,:), allocatable :: &
mesh_ipCoordinates !< IP x,y,z coordinates (after deformation!) mesh_ipCoordinates !< IP x,y,z coordinates (after deformation!)
#ifdef PETSC_USE_64BIT_INDICES #if defined(PETSC_USE_64BIT_INDICES) || PETSC_VERSION_MINOR < 17
external :: & external :: &
DMDestroy DMDestroy
#endif #endif

View File

@ -72,7 +72,7 @@ module mesh_mechanical_FEM
real(pREAL), parameter :: eps = 1.0e-18_pREAL real(pREAL), parameter :: eps = 1.0e-18_pREAL
external :: & ! ToDo: write interfaces external :: & ! ToDo: write interfaces
#ifdef PETSC_USE_64BIT_INDICES #if defined(PETSC_USE_64BIT_INDICES) || PETSC_VERSION_MINOR < 17
ISDestroy, & ISDestroy, &
#endif #endif
PetscSectionGetNumFields, & PetscSectionGetNumFields, &