Actual source code: slepcst.h

slepc-3.8.0 2017-10-20
Report Typos and Errors
  1: !
  2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3: !  SLEPc - Scalable Library for Eigenvalue Problem Computations
  4: !  Copyright (c) 2002-2017, Universitat Politecnica de Valencia, Spain
  5: !
  6: !  This file is part of SLEPc.
  7: !  SLEPc is distributed under a 2-clause BSD license (see LICENSE).
  8: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  9: !
 10: !  Include file for Fortran use of the ST object in SLEPc
 11: !
 12: #include "slepc/finclude/slepcst.h"

 14:       type tST
 15:         PetscFortranAddr:: v
 16:       end type tST

 18:       PetscEnum ST_MATMODE_COPY
 19:       PetscEnum ST_MATMODE_INPLACE
 20:       PetscEnum ST_MATMODE_SHELL

 22:       parameter (ST_MATMODE_COPY          =  0)
 23:       parameter (ST_MATMODE_INPLACE       =  1)
 24:       parameter (ST_MATMODE_SHELL         =  2)

 26: !
 27: !  End of Fortran include file for the ST package in SLEPc
 28: !