1a2fc1e05SToby Isaac /* 2a2fc1e05SToby Isaac Private data structure for QR preconditioner. 3a2fc1e05SToby Isaac */ 4*a4963045SJacob Faibussowitsch #pragma once 5a2fc1e05SToby Isaac 6a2fc1e05SToby Isaac #include <../src/ksp/pc/impls/factor/factor.h> 7a2fc1e05SToby Isaac 8a2fc1e05SToby Isaac typedef struct { 9a2fc1e05SToby Isaac PC_Factor hdr; 10a2fc1e05SToby Isaac IS col; /* index sets used for reordering */ 11a2fc1e05SToby Isaac } PC_QR; 12