Actual source code: petscdm.h

petsc-3.5.4 2015-05-23
Report Typos and Errors

  3: !
  4: !  Include file for Fortran use of the DM package in PETSc
  5: !
 6:  #include finclude/petscdmdef.h

  8: !
  9: !  Types of periodicity
 10: !
 11:       PetscEnum DM_BOUNDARY_NONE
 12:       PetscEnum DM_BOUNDARY_GHOSTED
 13:       PetscEnum DM_BOUNDARY_MIRROR
 14:       PetscEnum DM_BOUNDARY_PERIODIC
 15:       PetscEnum DM_BOUNDARY_TWIST

 17:       parameter (DM_BOUNDARY_NONE = 0)
 18:       parameter (DM_BOUNDARY_GHOSTED = 1)
 19:       parameter (DM_BOUNDARY_MIRROR = 2)
 20:       parameter (DM_BOUNDARY_PERIODIC = 3)
 21:       parameter (DM_BOUNDARY_TWIST = 4)