Actual source code: slepcsvd.h
slepc-3.7.2 2016-07-19
1: !
2: ! Include file for Fortran use of the SVD object in SLEPc
3: !
4: !
5: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
6: ! SLEPc - Scalable Library for Eigenvalue Problem Computations
7: ! Copyright (c) 2002-2016, Universitat Politecnica de Valencia, Spain
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 slepc/finclude/slepcsvddef.h
26: PetscEnum SVD_CONVERGED_TOL
27: PetscEnum SVD_CONVERGED_USER
28: PetscEnum SVD_DIVERGED_ITS
29: PetscEnum SVD_DIVERGED_BREAKDOWN
30: PetscEnum SVD_CONVERGED_ITERATING
32: parameter (SVD_CONVERGED_TOL = 1)
33: parameter (SVD_CONVERGED_USER = 2)
34: parameter (SVD_DIVERGED_ITS = -1)
35: parameter (SVD_DIVERGED_BREAKDOWN = -2)
36: parameter (SVD_CONVERGED_ITERATING = 0)
38: integer SVD_LARGEST
39: integer SVD_SMALLEST
41: parameter (SVD_LARGEST = 0)
42: parameter (SVD_SMALLEST = 1)
44: PetscEnum SVD_ERROR_ABSOLUTE
45: PetscEnum SVD_ERROR_RELATIVE
47: parameter (SVD_ERROR_ABSOLUTE = 0)
48: parameter (SVD_ERROR_RELATIVE = 1)
50: PetscEnum SVD_CONV_ABS
51: PetscEnum SVD_CONV_REL
52: PetscEnum SVD_CONV_USER
54: parameter (SVD_CONV_ABS = 0)
55: parameter (SVD_CONV_REL = 1)
56: parameter (SVD_CONV_USER = 2)
58: PetscEnum SVD_STOP_BASIC
59: PetscEnum SVD_STOP_USER
61: parameter (SVD_STOP_BASIC = 0)
62: parameter (SVD_STOP_USER = 1)
64: !
65: ! Possible arguments to SVDMonitorSet()
66: !
67: external SVDMONITORALL
68: external SVDMONITORLG
69: external SVDMONITORLGALL
70: external SVDMONITORCONVERGED
71: external SVDMONITORFIRST
73: !
74: ! End of Fortran include file for the SVD package in SLEPc
75: !