Actual source code: slepcst.h
slepc-3.16.0 2021-09-30
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 ST object in SLEPc
11: !
12: #if !defined(SLEPCSTDEF_H)
13: #define SLEPCSTDEF_H
15: #include "petsc/finclude/petscksp.h"
16: #include "slepc/finclude/slepcbv.h"
18: #define ST type(tST)
20: #define STType character*(80)
21: #define STMatMode PetscEnum
23: #define STSHELL 'shell'
24: #define STSHIFT 'shift'
25: #define STSINVERT 'sinvert'
26: #define STCAYLEY 'cayley'
27: #define STPRECOND 'precond'
28: #define STFILTER 'filter'
30: #endif