1: ! 2: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3: ! SLEPc - Scalable Library for Eigenvalue Problem Computations 4: ! Copyright (c) 2002-, 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: ! Used by slepcmfnmod.F90 to create Fortran module file 11: ! 12: #include "slepc/finclude/slepcsys.h" 13: #include "slepc/finclude/slepcmfn.h" 15: type, extends(tPetscObject) :: tMFN 16: end type tMFN 18: MFN, parameter :: SLEPC_NULL_MFN = tMFN(0) 20: PetscEnum, parameter :: MFN_CONVERGED_TOL = 1 21: PetscEnum, parameter :: MFN_CONVERGED_ITS = 2 22: PetscEnum, parameter :: MFN_DIVERGED_ITS = -1 23: PetscEnum, parameter :: MFN_DIVERGED_BREAKDOWN = -2 24: PetscEnum, parameter :: MFN_CONVERGED_ITERATING = 0 26: ! 27: ! Possible arguments to MFNMonitorSet() 28: ! 29: external MFNMONITORDEFAULT 31: #if defined(_WIN32) && defined(PETSC_USE_SHARED_LIBRARIES) 32: !DEC$ ATTRIBUTES DLLEXPORT::SLEPC_NULL_MFN 33: #endif