| 1499 |
slepc |
1 |
/*
|
|
|
2 |
Modification of the *temp* implementation of the BLOPEX multivector in order
|
|
|
3 |
to wrap created PETSc vectors as multivectors.
|
|
|
4 |
|
|
|
5 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
| 1672 |
slepc |
6 |
SLEPc - Scalable Library for Eigenvalue Problem Computations
|
| 2575 |
eromero |
7 |
Copyright (c) 2002-2011, Universitat Politecnica de Valencia, Spain
|
| 1672 |
slepc |
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/>.
|
| 1499 |
slepc |
22 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
#ifndef SLEPC_INTERFACE_HEADER
|
|
|
27 |
#define SLEPC_INTERFACE_HEADER
|
|
|
28 |
|
| 2423 |
jroman |
29 |
#include <blopex_lobpcg.h>
|
| 1974 |
eromero |
30 |
#include "petsc-interface.h"
|
| 1499 |
slepc |
31 |
|
|
|
32 |
extern int
|
|
|
33 |
SLEPCSetupInterpreter( mv_InterfaceInterpreter *ii );
|
|
|
34 |
|
|
|
35 |
extern void
|
|
|
36 |
SLEPCSetupInterpreterForDignifiedDeath( mv_InterfaceInterpreter *i );
|
|
|
37 |
|
|
|
38 |
#endif
|
|
|
39 |
|