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
//! Pattern matching infrastructure for structural matching
//!
//! Provides pattern matching with wildcards and constraints for
//! transformation rules and algebraic manipulation.
//!
//! This module is organized into:
//! - `patterns`: Pattern types, wildcards, and constraints
//! - `engine`: Matching algorithms and replacement logic

mod engine;
mod patterns;

pub use engine::{check_commutativity, Matchable, PatternMatches};
pub use patterns::{Pattern, WildcardConstraints};