Example #1
0
        public static void GrowthProb(string fileName)
        {
            FPTransitions transitions = LoadFromFile(fileName);
            FPTree        fpTree      = new FPTree(3);

            fpTree.mMaxDepth = 1;
            fpTree.GrowthProb(transitions);
            fpTree.Print();
        }
Example #2
0
        public static void Growth(string fileName)
        {
            FPTransitions transitions = LoadFromFile(fileName);
            FPTree        fpTree      = new FPTree(3);

            fpTree.mMaxDepth = 3;
            List <string> tmp = new List <string>();

            fpTree.Growth(transitions, tmp);
        }