1: !
2: ! Include file for Fortran use of the BV object in SLEPc
3: !
4: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5: ! SLEPc - Scalable Library for Eigenvalue Problem Computations
6: ! Copyright (c) 2002-2016, Universitat Politecnica de Valencia, Spain
7: !
8: ! This file is part of SLEPc.
9: !
10: ! SLEPc is free software: you can redistribute it and/or modify it under the
11: ! terms of version 3 of the GNU Lesser General Public License as published by
12: ! the Free Software Foundation.
13: !
14: ! SLEPc is distributed in the hope that it will be useful, but WITHOUT ANY
15: ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16: ! FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
17: ! more details.
18: !
19: ! You should have received a copy of the GNU Lesser General Public License
20: ! along with SLEPc. If not, see <http://www.gnu.org/licenses/>.
21: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
22: !
23: #include slepc/finclude/slepcbvdef.h 25: PetscEnum BV_ORTHOG_CGS
26: PetscEnum BV_ORTHOG_MGS
28: parameter (BV_ORTHOG_CGS = 0)
29: parameter (BV_ORTHOG_MGS = 1)
31: PetscEnum BV_ORTHOG_REFINE_IFNEEDED
32: PetscEnum BV_ORTHOG_REFINE_NEVER
33: PetscEnum BV_ORTHOG_REFINE_ALWAYS
35: parameter (BV_ORTHOG_REFINE_IFNEEDED = 0)
36: parameter (BV_ORTHOG_REFINE_NEVER = 1)
37: parameter (BV_ORTHOG_REFINE_ALWAYS = 2)
39: PetscEnum BV_ORTHOG_BLOCK_GS
40: PetscEnum BV_ORTHOG_BLOCK_CHOL
42: parameter (BV_ORTHOG_BLOCK_GS = 0)
43: parameter (BV_ORTHOG_BLOCK_CHOL = 1)
45: PetscEnum BV_MATMULT_VECS
46: PetscEnum BV_MATMULT_MAT
47: PetscEnum BV_MATMULT_MAT_SAVE
49: parameter (BV_MATMULT_VECS = 0)
50: parameter (BV_MATMULT_MAT = 1)
51: parameter (BV_MATMULT_MAT_SAVE = 2)
53: !
54: ! End of Fortran include file for the BV package in SLEPc
55: !