Пример #1
0
        /// <summary>
        /// Handles the input for graph data; calls GraphInputter class to assist
        /// </summary>
        /// <param name="graphInputter">GraphInputter class that adds graph data input functionality</param>
        /// <returns>Completed adjacency matrix from user input</returns>
        public static int[,] graphInput(GraphInputter graphInputter)
        {
            Console.WriteLine("These next steps will guide you in inputting your graph for analysis");
            int[,] adjacencyMatrix = graphInputter.graphInput();

            return(adjacencyMatrix);
        }