Example #1
0
        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;
        }
Example #2
0
        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;
        }