pub fn parallel_sor<F>(
matrix: &ArrayView2<'_, F>,
b: &ArrayView1<'_, F>,
omega: F,
max_iter: usize,
tolerance: F,
config: &WorkerConfig,
) -> LinalgResult<Array1<F>>
Expand description
Parallel SOR (Successive Over-Relaxation) method
Implements a modified parallel SOR using red-black ordering to enable parallel updates.