BEM++  2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
sparse_cholesky.hpp
1 #ifndef bempp_sparse_cholesky_hpp
2 #define bempp_sparse_cholesky_hpp
3 
4 #include "../common/common.hpp"
5 #include "../common/shared_ptr.hpp"
6 
7 class Epetra_CrsMatrix;
8 
9 namespace Bempp
10 {
11 
24 shared_ptr<Epetra_CrsMatrix> sparseCholesky(const Epetra_CrsMatrix& mat);
25 
26 } // namespace Bempp
27 
28 #endif