Actual source code: slepcsvd.h
slepc-3.14.1 2020-12-08
1: !
2: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3: ! SLEPc - Scalable Library for Eigenvalue Problem Computations
4: ! Copyright (c) 2002-2020, 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 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 SVDSCALAPACK 'scalapack'
35: #define SVDELEMENTAL 'elemental'
36: #define SVDPRIMME 'primme'
38: #endif