Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nobuyuki83/del-ls
- Owner: nobuyuki83
- License: mit
- Created: 2022-10-21T16:26:09.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T06:23:36.000Z (12 months ago)
- Last Synced: 2024-03-15T07:22:42.487Z (10 months ago)
- Topics: graphics, linear-solvers, numerical-analysis, rust
- Language: Rust
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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