pub fn big_o_normal_form(expr: &Expr) -> Result<Expr, AsymptoticAnalysisError>Expand description
Compute the Big-O normal form of an expression.
This is a two-phase pipeline:
canonical_form()— exact symbolic simplification- Asymptotic projection — drop dominated terms and constant factors
Returns an expression representing the asymptotic growth class.