pub trait HeavysideActivation {
type Output;
// Required methods
fn heavyside(self) -> Self::Output;
fn heavyside_derivative(self) -> Self::Output;
}pub trait HeavysideActivation {
type Output;
// Required methods
fn heavyside(self) -> Self::Output;
fn heavyside_derivative(self) -> Self::Output;
}