Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.67 KB

README.md

File metadata and controls

63 lines (38 loc) · 1.67 KB
Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. License
  5. Contact

About The Project

This app implements Game of Life. Each step is output into the BMP image.

Getting Started

Clone the repo with git clone https://github.com/MariaMozgunova/conways_game_of_life.git. Compile the program

Usage

Valid parameters for the program:

  • --input input_file.bmp - specify BMP image containing initial state of the game. Required
  • --output dir_name - specify directory name where to store states of the game. Required
  • --max_iter N - maximum number of iterations program will do. Defaults to infinity
  • --dump_freq N - specify the frequency of storing the state of the game. Defaults to 1

Eample of usage: conways_game_of_life.exe --input test.bmp --output res

License

Distributed under the MIT License. See LICENSE.txt for more information.

Contact

Maria Mozgunova - @mariamozgunova - [email protected]

Project Link: https://github.com/MariaMozgunova/conways_game_of_life

(back to top)