mathhook_core/
core.rs

1//! Core mathematical types and operations
2
3pub mod commutativity;
4pub mod constants;
5pub mod expression;
6pub mod matrix;
7pub mod number;
8pub mod performance;
9pub mod polynomial;
10pub mod symbol;
11
12pub use commutativity::Commutativity;
13pub use constants::MathConstant;
14pub use expression::Expression;
15pub use expression::ExpressionClass;
16pub use matrix::NumericMatrix;
17pub use number::Number;
18pub use performance::*;
19pub use polynomial::{PolynomialClassification, PolynomialError, PolynomialProperties};
20pub use symbol::{Symbol, SymbolType};