Class documentation of Concepts

Loading...
Searching...
No Matches
operator.hh
1// include files for the operator subdirectory
2
3#ifndef operator_hh
4#define operator_hh
5
8#include "operator/matrix.hh"
11#include "operator/sparseMatrix.hh"
14#include "operator/gmres.hh"
16#include "operator/submatrix.hh"
17#include "operator/lapack.hh"
19#include "operator/newton.hh"
20
21#include "operator/cg.hh"
22#include "operator/cgFabric.hh"
23
24#include "operator/bicgstab.hh"
26
27#ifdef HAS_PETSC
28#include "operator/PETSc.hh"
30#endif
31
32// FIXME: this should not be necessary
33//#define HAS_SuperLU
34
35#ifdef HAS_SuperLU
36#include "operator/superLU.hh"
38#endif
39
40#ifdef HAS_MPI
41#include <mpi.h>
42#endif
43
44#ifdef HAS_BELOS
46#endif
47
48#ifdef HAS_MUMPS
49#include "operator/mumps.hh"
53#endif
54
55#include "operator/diagonal.hh"
57
58#include "operator/umfpack.hh"
60
61#include "operator/pardiso.hh"
63
64#include "operator/transpose.hh"
65
67
68#endif // operator_hh
69