//! Neural network layers for BitNet.
//!//! This module provides:
//! - `BitLinear`: Drop-in replacement for `nn::Linear` with ternary weights
//! - Straight-Through Estimator for training
modbitlinear;modste;pubusebitlinear::BitLinear;pubuseste::{int8_ste, ste_backward, ste_forward, ternary_ste};