/// Analyses the behaviour of creating and deleting
/// the clusters throughout algorithms lifetime
#[derive(Default)]pubstructClusterAnalyser{pubdelete_counter:i32,
pubcreate_counter:i32,
}implClusterAnalyser{pubfnadd_count(&mutself){self.create_counter +=1;}pubfnremove_count(&mutself){self.delete_counter +=1;}}