Initial commit

This commit is contained in:
redclawsystems
2026-03-04 00:08:42 +00:00
commit 4d88dc0584
4449 changed files with 1556714 additions and 0 deletions
@@ -0,0 +1,11 @@
//! 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;