sym-ildl  1.2
Incomplete LDL' factorizations of indefinite symmetric and skew-symmetric matrices.
lilc_matrix.h
1 // -*- mode: c++ -*-
2 #ifndef _LILC_MATRIX_H_
3 #define _LILC_MATRIX_H_
4 
5 #include "block_diag_matrix.h"
6 #include "lil_sparse_matrix.h"
7 
8 template<class el_type = double>
9 class lilc_matrix;
10 
11 #include "lilc_matrix_declarations.h"
12 
13 #endif
A list-of-lists (LIL) matrix in column oriented format.
Definition: lilc_matrix.h:9