1: ! 2: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3: ! SLEPc - Scalable Library for Eigenvalue Problem Computations 4: ! Copyright (c) 2002-2019, 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 MFN object in SLEPc 11: ! 12: #include "slepc/finclude/slepcsys.h" 13: #include "slepc/finclude/slepcmfn.h" 15: type tMFN 16: PetscFortranAddr:: v PETSC_FORTRAN_TYPE_INITIALIZE 17: end type tMFN 19: MFN, parameter :: SLEPC_NULL_MFN = tMFN(0) 21: PetscEnum MFN_CONVERGED_TOL 22: PetscEnum MFN_CONVERGED_ITS 23: PetscEnum MFN_DIVERGED_ITS 24: PetscEnum MFN_DIVERGED_BREAKDOWN 25: PetscEnum MFN_CONVERGED_ITERATING 27: parameter (MFN_CONVERGED_TOL = 1) 28: parameter (MFN_CONVERGED_ITS = 2) 29: parameter (MFN_DIVERGED_ITS = -1) 30: parameter (MFN_DIVERGED_BREAKDOWN = -2) 31: parameter (MFN_CONVERGED_ITERATING = 0) 33: ! 34: ! Possible arguments to MFNMonitorSet() 35: ! 36: external MFNMONITORDEFAULT 37: external MFNMONITORLG 39: ! 40: ! End of Fortran include file for the MFN package in SLEPc 41: !