pub type AlignedVec<T> = Vec<T>;
SIMD-aligned vector for SSE operations
This matches the C++ EList_sse which provides 16/32-byte aligned storage.
pub struct AlignedVec<T> { /* private fields */ }