kryst 3.2.1

Krylov subspace and preconditioned iterative solvers for dense and sparse linear systems, with shared and distributed memory parallelism.
1
2
3
4
5
6
7
8
9
# Adding a preconditioner

- Implement `Preconditioner` (respect `apply` contract).
- Declare builder in `preconditioner/builders.rs`.
- Map options in `PcConfig::from_type_and_options`.
- Add unit tests + a doctest example.
- If distributed: read comm from `a.comm()` in `setup`.
- If supports reuse: implement `supports_numeric_update`/`update_numeric`.