game-of-life

Conway's Game of Life
git clone git://src.adamsgaard.dk/game-of-life # fast
git clone https://src.adamsgaard.dk/game-of-life.git # slow
Log | Files | Refs | README | LICENSE Back to index

rules.h (250B)


      1 #ifndef RULES_H_
      2 #define RULES_H_
      3 
      4 void random_population(int **cells, int nx, int ny, double ratio);
      5 int find_neighbor_count(int **cells, int **neighbors, int nx, int ny);
      6 void cell_transitions(int **cells, int **neighbors, int nx, int ny);
      7 
      8 #endif