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
//! Backend-specific `AsFormat` implementations for real-valued matrices.
//!
//! These re-exports are intended for AMG-oriented helpers and assume `S = f64`
//! on the underlying storage types.
#![cfg(feature = "backend-faer")]

// Re-export backend-specific AsFormat implementations.
#[allow(unused_imports)]
pub(crate) use crate::matrix::backend::faer::format::*;