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
//! Validation test suite
//!
//! This module contains comprehensive validation tests comparing MathHook output
//!
//! Test categories:
//! - simplification_tests: Simplification operations
//! - derivative_tests: Derivative operations
//! - solver_tests: Equation solving
//! - special_functions_tests: Special functions and identities
pub mod derivative_tests;
pub mod simplification_tests;
pub mod solver_tests;
pub mod special_functions_tests;