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: 10 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T11:39:41.000Z (almost 2 years ago)
- Last Synced: 2025-12-27T00:12:13.507Z (6 months ago)
- Topics: graphics, linear-solvers, numerical-analysis, rust
- Language: Rust
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- 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