Skip to content

NatLabRockies/skyline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skyline

Build Status Build status

A header-only C++ direct solver for sparse matrices stored in skyline format. Include the header and then create the object:

std::vector<size_t> heights{ {0, 1, 1, 1, 1, 1, 1} };
skyline::SymmetricMatrix<size_t, float, std::vector> sky(heights);

Presently, only a LDLT decomposition solver is available:

sky.ldlt_solve(x);

The decomposition is done in place, so intermediate calls are available to solve multiple right hand sides.

About

A C++ direct solver for sparse matrices stored in skyline format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors