Actual source code: krylovschur.h
1: /*
3: Private header for Krylov-Schur.
5: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
6: SLEPc - Scalable Library for Eigenvalue Problem Computations
7: Copyright (c) 2002-2012, Universitat Politecnica de Valencia, Spain
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.
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.
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: */
28: extern PetscErrorCode EPSSolve_KrylovSchur_Default(EPS);
29: extern PetscErrorCode EPSSolve_KrylovSchur_Symm(EPS);
30: extern PetscErrorCode EPSSolve_KrylovSchur_Slice(EPS);
31: extern PetscErrorCode EPSSolve_KrylovSchur_Indefinite(EPS);
32: extern PetscErrorCode EPSGetArbitraryValues(EPS,PetscScalar*,PetscScalar*);
34: typedef struct {
35: PetscReal keep;
36: } EPS_KRYLOVSCHUR;
38: #endif