trules.h - game-of-life - Conway's Game of Life
(HTM) git clone git://src.adamsgaard.dk/game-of-life
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
trules.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