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