xref: /petsc/src/ksp/pc/impls/factor/icc/icc.h (revision e2df7a95c5ea77c899beea10ff9effd6061e7c8f)
1 
2 #include "src/ksp/pc/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   void            *implctx;
14 } PC_ICC;
15 
16 #endif
17