Beispiel #1
0
        /// <summary>
        /// This is a static method that
        /// </summary>
        public void ColoringTest()
        {
            ColoringGraph thehypercube = HyperCubeConfigurations();

            int[] colors = thehypercube.GetColors();
            output.WriteLine("Verfies it by hand: ");
            for (int I = 0; I < colors.Length; I++)
            {
                output.WriteLine($"{I}:{colors[I]}");
            }
        }