simsym 0.1.0

A simple symbolic computation library.
Documentation
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
}