xref: /petsc/src/ksp/pc/impls/factor/icc/icc.h (revision 3a19ef87c57d96a00c8e8b5d38d585840d49a0e4)
1 
2 #if !defined(__ICC_H)
3 #define __ICC_H
4 
5 #include <../src/ksp/pc/impls/factor/factor.h>
6 
7 /* Incomplete Cholesky factorization context */
8 
9 typedef struct {
10   PC_Factor       hdr;
11   PetscReal       actualfill;
12   void            *implctx;
13 } PC_ICC;
14 
15 #endif
16