Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 943 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 943 Bytes

Cellular Automata Simulator

Introduction

This project is a simple cellular automata simulator implemented in C++. Cellular automata are discrete models studied in computer science, mathematics, and physics to simulate complex systems.

For more information on cellular automata, check out the Wikipedia page.

Getting Started

Prerequisites

  • C++ compiler (e.g., g++)
  • Make utility

How to Run

  1. Clone the repository:
    git clone https://github.com/sahil-tgs/Cellular-Automata.git
    cd Cellular-Automata
    
  2. Build the project using the provided Makefile:
    make
    
  3. Run the simulator:
    ./game_of_life
    

Usage

Upon running the simulator, you can see some patter on the terminal which u can exit from by pressing ctrl + X .

Additional Resources

For more details and advanced usage, refer to the project wiki. (comming soon)