Пример #1
0
        public static void Main(string[] args)
        {
            Console.WriteLine("starting....");

            try
            {
                Dictionary <string, Person> graph = Recommendor.CreateGraphwithSampleData();


                //A graph based matching
                Recommendor.BFSBasedMatchingRecommendation(graph, "B", 2);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            Console.ReadLine();
        }
Пример #2
0
 public UnitTests()
 {
     _Graph = Recommendor.CreateGraphwithSampleData();
 }