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
10
11
#[cfg(feature = "dense-direct")]
pub mod lu_pc;
#[cfg(feature = "dense-direct")]
pub mod qr_pc;
pub mod superlu_dist_pc;

#[cfg(feature = "dense-direct")]
pub use lu_pc::LuPc;
#[cfg(feature = "dense-direct")]
pub use qr_pc::QrPc;
pub use superlu_dist_pc::SuperLuDistPc;