Actual source code: slepcsvd.h

slepc-3.8.3 2018-04-03
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 SVD object in SLEPc
 11: !

 15: #include "slepc/finclude/slepcbv.h"
 16: #include "slepc/finclude/slepcds.h"
 17: #include "slepc/finclude/slepceps.h"

 19: #define SVD type(tSVD)

 21: #define SVDType            character*(80)
 22: #define SVDConvergedReason PetscEnum
 23: #define SVDErrorType       PetscEnum
 24: #define SVDWhich           PetscEnum
 25: #define SVDConv            PetscEnum
 26: #define SVDStop            PetscEnum
 27: #define SVDPRIMMEMethod    PetscEnum

 29: #define SVDCROSS     'cross'
 30: #define SVDCYCLIC    'cyclic'
 31: #define SVDLAPACK    'lapack'
 32: #define SVDLANCZOS   'lanczos'
 33: #define SVDTRLANCZOS 'trlanczos'
 34: #define SVDPRIMME    'primme'

 36: #endif