xref: /petsc/src/ksp/pc/impls/factor/icc/icc.h (revision 21afe8eba6176906720144c07e50261d1c4c8dea)
1 #pragma once
2 
3 #include <../src/ksp/pc/impls/factor/factor.h>
4 
5 /* Incomplete Cholesky factorization context */
6 
7 typedef struct {
8   PC_Factor hdr;
9   void     *implctx;
10 } PC_ICC;
11