xref: /petsc/src/ksp/pc/impls/factor/icc/icc.h (revision 69bb7ac94e38f481a514b28cb10ff7ece56113f9)
1 
2 #include "private/pcimpl.h"
3 
4 #if !defined(__ICC_H)
5 #define __ICC_H
6 
7 /* Incomplete Cholesky factorization context */
8 
9 typedef struct {
10   Mat             fact;
11   MatOrderingType ordering;
12   MatFactorInfo   info;
13   PetscReal       actualfill;
14   void            *implctx;
15 } PC_ICC;
16 
17 #endif
18