universe list_simulation(universe u, bool print_to_console, bool generate_images, bool consider_torus)
Get the final state of a universe, according to its step_nb parameter.
Definition: list_conway.c:108
universe list_step(universe u, bool consider_torus)
Get a naive universe's next iteration. Decrements the universe's step_nb parameter by one...
Definition: list_conway.c:52
Structure representing a universe: width, height, number of simulation steps and current cells state...
Definition: list_universe.h:18
Header file for a linked list implementation of Conway's game of life universe structure.
int list_count_neighbors(universe u, int row, int column, bool consider_torus)
Count alive neighbors of a cell in a given universe.
Definition: list_conway.c:34
Header file for a linked list implementation of Conway's game of life pbm image printer.
linked_list list_neighbors(universe u, int row, int column, bool consider_torus)
Get a list of a cell's neighbors in a universe.
Definition: list_conway.c:10
Definition: linked_list_cell.h:18