xref: /petsc/src/mat/impls/nest/matnestimpl.h (revision c7b7c8a41cea9aec06e69336c606d607e89c9d9b)
1 
2 #ifndef MatNest_impl_h
3 #define MatNest_impl_h
4 
5 #include <private/matimpl.h>
6 
7 typedef struct {
8   PetscInt           nr,nc;        /* nr x nc blocks */
9   Mat                **m;
10   PetscBool          setup_called;
11   IS                 *is_row,*is_col;
12   PetscInt           *row_len,*col_len;
13 } Mat_Nest;
14 
15 #endif
16 
17