pub trait Activation: Send + Sync { // Required methods fn forward(&self, x: Fixed) -> Fixed; fn derivative(&self, x: Fixed) -> Fixed; }