1 2 3 4 5 6 7 8
//! Identity simplification when the `simplify` feature is disabled. use crate::expr::Expr; #[inline] pub fn simplify(expr: Expr) -> Expr { expr }