Actual source code: slepcds.h
slepc-3.16.2 2022-02-01
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 DS object in SLEPc
11: !
12: #if !defined(SLEPCDSDEF_H)
13: #define SLEPCDSDEF_H
15: #include "petsc/finclude/petscmat.h"
16: #include "slepc/finclude/slepcfn.h"
17: #include "slepc/finclude/slepcrg.h"
19: #define DS type(tDS)
21: #define DSType character*(80)
22: #define DSStateType PetscEnum
23: #define DSMatType PetscEnum
24: #define DSParallelType PetscEnum
26: #define DSHEP 'hep'
27: #define DSNHEP 'nhep'
28: #define DSGHEP 'ghep'
29: #define DSGHIEP 'ghiep'
30: #define DSGNHEP 'gnhep'
31: #define DSNHEPTS 'nhepts'
32: #define DSSVD 'svd'
33: #define DSGSVD 'gsvd'
34: #define DSPEP 'pep'
35: #define DSNEP 'nep'
37: #endif