Actual source code: slepcmfn.h90

slepc-3.17.1 2022-04-11
Report Typos and Errors
  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:       interface MFNGetTolerances
 11:         subroutine MFNGetTolerances00(a,b,c,z)
 12:           import tMFN
 13:           MFN a
 14:           PetscReal b
 15:           PetscInt c
 16:           PetscErrorCode z
 17:         end subroutine
 18:         subroutine MFNGetTolerances10(a,b,c,z)
 19:           import tMFN
 20:           MFN a
 21:           PetscReal b(*)
 22:           PetscInt c
 23:           PetscErrorCode z
 24:         end subroutine
 25:         subroutine MFNGetTolerances01(a,b,c,z)
 26:           import tMFN
 27:           MFN a
 28:           PetscReal b
 29:           PetscInt c(*)
 30:           PetscErrorCode z
 31:         end subroutine
 32:       end interface MFNGetTolerances

 34:       interface
 35:         subroutine MFNDestroy(a,z)
 36:           import tMFN
 37:           MFN a
 38:           PetscErrorCode z
 39:         end subroutine
 40:       end interface