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