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