xref: /petsc/src/mat/impls/hypre/mhypre.h (revision fbfcfee5110779e3d6a9465ca0a2e0f9a1a6e5e3)
1 
2 #if !defined(_MHYPRE_H)
3 #define _MHYPRE_H
4 
5 #include <petscsys.h>
6 #include <HYPRE_IJ_mv.h>
7 
8 typedef struct {
9   HYPRE_IJMatrix ij;
10   HYPRE_IJVector x;
11   HYPRE_IJVector b;
12   MPI_Comm       comm;
13   PetscBool      inner_free;
14 } Mat_HYPRE;
15 
16 #endif
17