math-fem 0.2.5

Multigrid FEM solver for the Helmholtz equation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Geometric multigrid solver for finite element problems
//!
//! Provides V-cycle, W-cycle, and F-cycle multigrid methods with
//! Gauss-Seidel smoothing and linear interpolation transfer operators.

mod cycle;
mod hierarchy;
mod smoother;
mod transfer;

pub use cycle::*;
pub use hierarchy::*;
pub use smoother::*;
pub use transfer::*;