Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 608 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 608 Bytes

Conway's Game of Life

rust.yml

Simple and for fun implementation of Conway's Game of Life.

  • Runs until no changes are performed on the board or the iterations are exhausted.
  • No loop detection.
  • Prints board to the console.
  • Configurable board size.

How To Use

Just run cargo run -- --help and explore the options.

Improvements

  • Bitwise board.
  • Cell heatmap.
  • Make multi-threaded.
  • OpenGL renderer.
  • Shader solver.
  • Loop detection.
  • Output to image.