1pub mod rq; 2pub mod rq_matrix; 3pub mod rq_vector; 4pub mod zq; 5 6pub trait Norms { 7 type NormType; 8 fn l2_norm_squared(&self) -> Self::NormType; 9 fn linf_norm(&self) -> Self::NormType; 10}