Example #1
0
        static void Main(string[] args)
        {
            // var edges = GraphFactory.CreateEdgesForRandomGraph(_vertexCount);
            var edges = GraphFactory.CreateRandomGraph(_vertexCount, 5, 15, 14);

            //var edges = GraphFactory.CreateEdgesForSampleGraph();

            RunAllPermutations(edges, _vertexCount);

            Console.ReadKey();
        }