Skip to content

Simulating the cellular automaton Conway's Game of Life in Julia.

License

Notifications You must be signed in to change notification settings

VasanthManiVasi/Conways-Game-of-Life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GameOfLife

This is a package for simulating the cellular automaton Conway's Game of Life in Julia.

Installation

using Pkg
Pkg.add("https://github.com/VasanthManiVasi/Conways-Game-of-Life")
Pkg.test("GameOfLife")

Example

using GameOfLife

# Using the default world state
simulate(max_days = 100, speed = 80)

# Using a pre-defined world state
A = rand(0:1, 100, 100)
simulate(max_days = 150, speed = 80, initial_state = A)

About

Simulating the cellular automaton Conway's Game of Life in Julia.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages