xref: /petsc/src/ksp/pc/impls/factor/icc/icc.h (revision fb9813fcce2d8af4f821f2682fa5c855400b0d91)
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