Actual source code: petscis.h

petsc-3.7.5 2017-01-01
Report Typos and Errors
  1: !
  2: !
  3: !  Include file for Fortran use of the IS (index set) package in PETSc
  4: !
  5:  #include petsc/finclude/petscisdef.h


  8:       PetscEnum IS_COLORING_GLOBAL
  9:       PetscEnum IS_COLORING_GHOSTED
 10:       parameter (IS_COLORING_GLOBAL = 0,IS_COLORING_GHOSTED = 1)

 12:       PetscEnum IS_GENERAL
 13:       PetscEnum IS_STRIDE
 14:       PetscEnum IS_BLOCK
 15:       parameter (IS_GENERAL = 0,IS_STRIDE = 1,IS_BLOCK = 2)

 17:       PetscEnum IS_GTOLM_MASK
 18:       PetscEnum IS_GTOLM_DROP
 19:       parameter (IS_GTOLM_MASK =0,IS_GTOLM_DROP = 1)

 21: !
 22: !  End of Fortran include file for the IS package in PETSc