xref: /petsc/src/mat/impls/hypre/mhypre.h (revision 5b6bfdb9644f185dbf5e5a09b808ec241507e1e7)
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