public void GenerateAutomaticProfiles(string fileName) { ProfileTree t = ProfileAutomatic.AnalyseProfileFile(fileName, SIMDIST.DISTANCE); string profileName = "automatic_distance.profile"; t.SaveProfiles(profileName); hammingProfile = profileName; t = ProfileAutomatic.AnalyseProfileFile(fileName, SIMDIST.SIMILARITY); profileName = "automatic_similarity.profile"; t.SaveProfiles(profileName); juryProfile = profileName; }
public void GenerateAutomaticProfiles(string fileName) { ProfileTree t = ProfileAutomatic.AnalyseProfileFile(fileName, SIMDIST.SIMILARITY); string profileName = "automatic_similarity.profile"; t.SaveProfiles(profileName); this.profileName = profileName; this.profileNameReg = profileName; }