1use num_traits::Num;
23/// Required traits a number type must implement to be used with [simplify](crate::simplify).
4pub trait ExtendedNumOps: Num + Clone + Copy + PartialOrd {}
5impl<T> ExtendedNumOps for T where T: Num + Clone + Copy + PartialOrd {}