mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
//! Substitution system for replacing expressions
//!
//! Provides recursive tree-walking substitution for Expression types.

mod core;
mod rewrite;

// Re-export the trait
pub use self::core::Substitutable;