Skip to content

Latest commit

 

History

History
71 lines (45 loc) · 1.82 KB

README.md

File metadata and controls

71 lines (45 loc) · 1.82 KB

Game of Life in R | Version 1.0

Archived Travis build status Coverage Status LGPL, Version 3.0 The project has reached a stable, usable state but is no longer being actively developed; support/maintenance will be provided as time allows.

[Last README update: 2019-02-07]


The Game of Life is a ‘cellular automaton’, and was invented by Cambridge mathematician John Conway.

This ‘package’ is an simple example of this game.

To complete installation of this version, use the followin code.

install.packages('devtools')
devtools::install_github('frahik/GameOfLife-R')

Example of use

library(GameOfLife)
game_of_life(sandbox_dimension = 500, probability_of_initial_existence = 0.5, delay_time = 30, iterations = 200, path = '')

This is the output on the path folder.

GameOfLife-R

Authors

  • Francisco Javier Luna-Vázquez (Author, Maintainer)