/// Analyses the overall data loss experienced throughout the
/// algorithms lifetime
#[derive(Default)]pubstructSseAnalyser{sum_info_loss:f64,
}implSseAnalyser{pubfnadd_info_loss(&mutself, info_loss:f64){self.sum_info_loss += info_loss
}pubfntotal_info_loss(&self)->f64{self.sum_info_loss
}}