mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
//! Polynomial equation solver for cubic and quartic equations

mod educational;
mod solver;

#[cfg(test)]
mod tests;

pub use solver::PolynomialSolver;