12 lines
250 B
Rust
12 lines
250 B
Rust
//! Numerical solvers for scientific computing
|
|
|
|
pub struct ODESolver;
|
|
pub struct PDESolver;
|
|
pub struct LinearSolver;
|
|
pub struct EigenSolver;
|
|
pub struct RungeKutta;
|
|
pub struct AdamsBashforth;
|
|
pub struct CrankNicolson;
|
|
pub struct GMRES;
|
|
pub struct CG;
|