Preconditioner

Trait Preconditioner 

Source
pub trait Preconditioner {
    // Required method
    fn apply(&self, r: &Array1<Complex64>) -> Array1<Complex64>;
}
Expand description

Preconditioner trait

Required Methods§

Source

fn apply(&self, r: &Array1<Complex64>) -> Array1<Complex64>

Apply the preconditioner: solve M*z = r for z

Implementors§