Actual source code: slepcmfn.h

slepc-3.5.2 2014-10-10
Report Typos and Errors
  1: !
  2: !  Include file for Fortran use of the MFN object in SLEPc
  3: !
  4: !
  5: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6: !  SLEPc - Scalable Library for Eigenvalue Problem Computations
  7: !  Copyright (c) 2002-2014, Universitat Politecnica de Valencia, Spain
  8: !
  9: !  This file is part of SLEPc.
 10: !
 11: !  SLEPc is free software: you can redistribute it and/or modify it under  the
 12: !  terms of version 3 of the GNU Lesser General Public License as published by
 13: !  the Free Software Foundation.
 14: !
 15: !  SLEPc  is  distributed in the hope that it will be useful, but WITHOUT  ANY
 16: !  WARRANTY;  without even the implied warranty of MERCHANTABILITY or  FITNESS
 17: !  FOR  A  PARTICULAR PURPOSE. See the GNU Lesser General Public  License  for
 18: !  more details.
 19: !
 20: !  You  should have received a copy of the GNU Lesser General  Public  License
 21: !  along with SLEPc. If not, see <http://www.gnu.org/licenses/>.
 22: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 23: !
 24:  #include finclude/slepcsysdef.h
 25:  #include finclude/slepcmfndef.h

 27: !  Convergence flags.
 28: !  They sould match the flags in $SLEPC_DIR/include/slepcmfn.h

 30:       PetscEnum MFN_CONVERGED_TOL
 31:       PetscEnum MFN_DIVERGED_ITS
 32:       PetscEnum MFN_DIVERGED_BREAKDOWN
 33:       PetscEnum MFN_CONVERGED_ITERATING

 35:       parameter (MFN_CONVERGED_TOL          =  2)
 36:       parameter (MFN_DIVERGED_ITS           = -3)
 37:       parameter (MFN_DIVERGED_BREAKDOWN     = -4)
 38:       parameter (MFN_CONVERGED_ITERATING    =  0)

 40:       PetscEnum MFN_EXP

 42:       parameter (MFN_EXP                    =  1)

 44: !
 45: !   Possible arguments to MFNMonitorSet()
 46: !
 47:       external MFNMONITORDEFAULT
 48:       external MFNMONITORLG

 50: !
 51: !  End of Fortran include file for the MFN package in SLEPc
 52: !