Subversion Repositories slepc-dev

Rev

Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1543 slepc 1
!
2
!  Include file for Fortran use of the EPS object in SLEPc
3
!
4
!
5
!  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1672 slepc 6
!  SLEPc - Scalable Library for Eigenvalue Problem Computations
7
!  Copyright (c) 2002-2009, Universidad Politecnica de Valencia, Spain
1543 slepc 8
!
1672 slepc 9
!  This file is part of SLEPc.
10
!    
11
!  SLEPc is free software: you can redistribute it and/or modify it under  the
12
!  terms of version 3 of the GNU Lesser General Public License as published by
13
!  the Free Software Foundation.
14
!
15
!  SLEPc  is  distributed in the hope that it will be useful, but WITHOUT  ANY
16
!  WARRANTY;  without even the implied warranty of MERCHANTABILITY or  FITNESS
17
!  FOR  A  PARTICULAR PURPOSE. See the GNU Lesser General Public  License  for
18
!  more details.
19
!
20
!  You  should have received a copy of the GNU Lesser General  Public  License
21
!  along with SLEPc. If not, see <http://www.gnu.org/licenses/>.
1543 slepc 22
!  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
23
!
24
#if !defined(__SLEPCEPS_H)
25
#define __SLEPCEPS_H
26
 
27
#include "finclude/slepcstdef.h"
28
#include "finclude/slepcipdef.h"
29
 
1564 slepc 30
#if !defined(PETSC_USE_FORTRAN_DATATYPES)
1543 slepc 31
#define EPS                    PetscFortranAddr
32
#endif
33
 
34
#define EPSType                character*(80)
35
#define EPSConvergedReason     PetscEnum
36
#define EPSProblemType         PetscEnum
37
#define EPSWhich               PetscEnum
38
#define EPSClass               PetscEnum
1560 slepc 39
#define EPSExtraction          PetscEnum
1543 slepc 40
#define EPSPowerShiftType      PetscEnum
41
#define EPSLanczosReorthogType PetscEnum
42
#define EPSPRIMMEMethod        PetscEnum
43
#define EPSPRIMMEPrecond       PetscEnum
44
 
45
 
46
#define EPSPOWER       'power'
47
#define EPSSUBSPACE    'subspace'
48
#define EPSARNOLDI     'arnoldi'
49
#define EPSLANCZOS     'lanczos'
50
#define EPSKRYLOVSCHUR 'krylovschur'
51
#define EPSLAPACK      'lapack'
52
#define EPSARPACK      'arpack'
53
#define EPSBLZPACK     'blzpack'
54
#define EPSTRLAN       'trlan'
55
#define EPSBLOPEX      'blopex'
56
#define EPSPRIMME      'primme'
57
 
58
#endif