--- a/src/seminorms.rs Fri Apr 28 13:15:19 2023 +0300 +++ b/src/seminorms.rs Tue Dec 31 09:34:24 2024 -0500 @@ -368,11 +368,3 @@ make_convolutionsupportgenerator_unaryop!(Neg, neg); -/// Trait for indicating that `Self` is Lipschitz with respect to the seminorm `D`. -pub trait Lipschitz<D> { - /// The type of floats - type FloatType : Float; - - /// Returns the Lipschitz factor of `self` with respect to the seminorm `D`. - fn lipschitz_factor(&self, seminorm : &D) -> Option<Self::FloatType>; -}