Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nobuyuki83/del-ls

Sparse linear solver for research prototyping
https://github.com/nobuyuki83/del-ls

graphics linear-solvers numerical-analysis rust

Last synced: 4 days ago
JSON representation

Sparse linear solver for research prototyping

Awesome Lists containing this project

README

        

# del-ls

Sparse linear solver for research prototyping.

Originally, the code is written in C++ in [DelFEM2](https://github.com/nobuyuki83/delfem2), then it was ported to Rust.

[The documentation generated from code](https://docs.rs/del-ls)

- [x] sparse square matrix
- [x] sparse block square matrix
- [x] sparse matrix multiplication
- [x] Conjugate Gradient (CG) method
- [x] Incomplete LU preconditioner (ILU0 and ILUk)
- [x] Incomplete Choleskey Conjugate Gradient (ICCG) method