| 1887 |
jroman |
1 |
!
|
|
|
2 |
! Include file for Fortran use of the QEP object in SLEPc
|
|
|
3 |
!
|
|
|
4 |
!
|
|
|
5 |
! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
6 |
! SLEPc - Scalable Library for Eigenvalue Problem Computations
|
| 2575 |
eromero |
7 |
! Copyright (c) 2002-2011, Universitat Politecnica de Valencia, Spain
|
| 1887 |
jroman |
8 |
!
|
|
|
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/>.
|
|
|
22 |
! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
23 |
!
|
|
|
24 |
#include "finclude/slepcqepdef.h"
|
|
|
25 |
|
|
|
26 |
! Convergence flags.
|
|
|
27 |
! They should match the flags in $SLEPC_DIR/include/slepcqep.h
|
|
|
28 |
|
|
|
29 |
PetscEnum QEP_CONVERGED_TOL
|
|
|
30 |
PetscEnum QEP_DIVERGED_ITS
|
|
|
31 |
PetscEnum QEP_DIVERGED_BREAKDOWN
|
|
|
32 |
PetscEnum QEP_CONVERGED_ITERATING
|
|
|
33 |
|
|
|
34 |
parameter (QEP_CONVERGED_TOL = 2)
|
|
|
35 |
parameter (QEP_DIVERGED_ITS = -3)
|
|
|
36 |
parameter (QEP_DIVERGED_BREAKDOWN = -4)
|
|
|
37 |
parameter (QEP_CONVERGED_ITERATING = 0)
|
|
|
38 |
|
| 1907 |
jroman |
39 |
PetscEnum QEP_GENERAL
|
|
|
40 |
PetscEnum QEP_HERMITIAN
|
|
|
41 |
PetscEnum QEP_GYROSCOPIC
|
|
|
42 |
|
|
|
43 |
parameter (QEP_GENERAL = 1)
|
|
|
44 |
parameter (QEP_HERMITIAN = 2)
|
|
|
45 |
parameter (QEP_GYROSCOPIC = 3)
|
|
|
46 |
|
| 1887 |
jroman |
47 |
PetscEnum QEP_LARGEST_MAGNITUDE
|
|
|
48 |
PetscEnum QEP_SMALLEST_MAGNITUDE
|
|
|
49 |
PetscEnum QEP_LARGEST_REAL
|
|
|
50 |
PetscEnum QEP_SMALLEST_REAL
|
|
|
51 |
PetscEnum QEP_LARGEST_IMAGINARY
|
|
|
52 |
PetscEnum QEP_SMALLEST_IMAGINARY
|
|
|
53 |
|
| 1942 |
jroman |
54 |
parameter (QEP_LARGEST_MAGNITUDE = 1)
|
|
|
55 |
parameter (QEP_SMALLEST_MAGNITUDE = 2)
|
|
|
56 |
parameter (QEP_LARGEST_REAL = 3)
|
|
|
57 |
parameter (QEP_SMALLEST_REAL = 4)
|
|
|
58 |
parameter (QEP_LARGEST_IMAGINARY = 5)
|
|
|
59 |
parameter (QEP_SMALLEST_IMAGINARY = 6)
|
| 1887 |
jroman |
60 |
|
| 2134 |
eromero |
61 |
external QEPMONITORALL
|
| 1887 |
jroman |
62 |
external QEPMONITORLG
|
| 2134 |
eromero |
63 |
external QEPMONITORLGALL
|
| 1887 |
jroman |
64 |
external QEPMONITORCONVERGED
|
|
|
65 |
external QEPMONITORFIRST
|