mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Educational ODE Features
//!
//! Provides step-by-step explanations for ODE solving, including:
//! - Solution steps with mathematical justifications
//! - Educational wrappers around solvers
//! - Worked examples for common ODE types

pub mod examples;
pub mod steps;
pub mod wrapper;

pub use examples::ODEExamples;
pub use steps::{ODEPhase, ODESolutionStep, ODESolutionStepBuilder, ODEStepFactory};
pub use wrapper::{EducationalODESolver, ODEExplanation};