コード例 #1
0
 /// <summary>
 /// Method to simulate one time step in conway's game of life.
 /// </summary>
 /// <param name="InitialTable"> The current game of life table. </param>
 /// <returns> The next time step game of life table. </returns>
 public int[,] SimulateNextStep(int[,] InitialTable)
 {
     return(Simulate.GenerateNextStep(InitialTable));
 }