mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
//! Polynomial Division Algorithms
//!
//! DELETED - Use PolynomialArithmetic trait methods instead:
//! - `expr.poly_div(divisor, var)` for long division
//! - Exact division handled at algebra layer

// This file intentionally left minimal - all polynomial division
// operations are provided through the PolynomialArithmetic trait.