chess board
Model was written in NetLogo 5.1.0
•
Viewed 656 times
•
Downloaded 60 times
•
Run 0 times
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
Comments and Questions
Please start the discussion about this model!
(You'll first need to log in.)
Click to Run Model
patches-own[ living? live-neighbors ] to setup clear-all ask patches[ ifelse remainder (pxcor + pycor)2 = 0 [cell-birth] [cell-death] ] reset-ticks end to cell-birth set living? true set pcolor red end to cell-death set living? false set pcolor black end to go ask patches[ set live-neighbors count neighbors with [living? = true] ] ask patches with [living? = true] [ if live-neighbors < 2 or live-neighbors > 3 [cell-death] ] ask patches with [living? = false] [if live-neighbors = 3 [cell-birth] ] tick end
There is only one version of this model, created over 8 years ago by aliaa medhat.
Attached files
File | Type | Description | Last updated | |
---|---|---|---|---|
chess board.png | preview | Preview for 'chess board' | over 8 years ago, by aliaa medhat | Download |
This model does not have any ancestors.
This model does not have any descendants.