예제 #1
0
        private string CalculateCycleCount(char node, int maxStops)
        {
            string result = CycleCalculator.FindAllSimpleCycles(_graph, node, maxStops).Count.ToString();

            return(result);
        }