Actual source code: slepcsvd.h

slepc-3.15.2 2021-09-20
Report Typos and Errors
  1: !
  2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3: !  SLEPc - Scalable Library for Eigenvalue Problem Computations
  4: !  Copyright (c) 2002-2021, 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: !
 12: #if !defined(SLEPCSVDDEF_H)
 13: #define SLEPCSVDDEF_H

 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 SVDProblemType     PetscEnum
 23: #define SVDConvergedReason PetscEnum
 24: #define SVDErrorType       PetscEnum
 25: #define SVDWhich           PetscEnum
 26: #define SVDConv            PetscEnum
 27: #define SVDStop            PetscEnum
 28: #define SVDPRIMMEMethod    PetscEnum

 30: #define SVDCROSS      'cross'
 31: #define SVDCYCLIC     'cyclic'
 32: #define SVDLAPACK     'lapack'
 33: #define SVDLANCZOS    'lanczos'
 34: #define SVDTRLANCZOS  'trlanczos'
 35: #define SVDRANDOMIZED 'randomized'
 36: #define SVDSCALAPACK  'scalapack'
 37: #define SVDELEMENTAL  'elemental'
 38: #define SVDPRIMME     'primme'

 40: #endif