interfaces are not included in petsc version<=3.16.x yet
This commit is contained in:
parent
d428024d4d
commit
cc77d5c69b
|
@ -56,7 +56,7 @@ module discretization_mesh
|
|||
real(pREAL), dimension(:,:,:), allocatable :: &
|
||||
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 :: &
|
||||
DMDestroy
|
||||
#endif
|
||||
|
|
|
@ -72,7 +72,7 @@ module mesh_mechanical_FEM
|
|||
real(pREAL), parameter :: eps = 1.0e-18_pREAL
|
||||
|
||||
external :: & ! ToDo: write interfaces
|
||||
#ifdef PETSC_USE_64BIT_INDICES
|
||||
#if defined(PETSC_USE_64BIT_INDICES) || PETSC_VERSION_MINOR < 17
|
||||
ISDestroy, &
|
||||
#endif
|
||||
PetscSectionGetNumFields, &
|
||||
|
|
Loading…
Reference in New Issue