-
Notifications
You must be signed in to change notification settings - Fork 52
/
replicator.py
41 lines (35 loc) · 984 Bytes
/
replicator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import numpy as np
import time
from lib import fft_convolve2d
import matplotlib.pyplot as plt
plt.ion()
def replicator(state, k=None):
"""
'Replicator' cellular automaton state transition
http://www.conwaylife.com/wiki/Replicator_(CA)
"""
if k == None:
m, n = state.shape
k = np.zeros((m, n))
k[m/2-1 : m/2+2, n/2-1 : n/2+2] = np.array([[1,1,1],[1,0,1],[1,1,1]])
b = fft_convolve2d(state,k).round()
c = np.zeros(b.shape)
# checks the values, and sets alive vs. dead state
c[np.where((b + 1) % 2 == 0)] = 1
# return new state
return c
if __name__ == "__main__":
# set up board
m,n = 100,100
A = np.zeros((m,n))
A[20,20] = 1
A[20,21] = 1
# plot each frame
plt.figure()
img_plot = plt.imshow(A, interpolation="nearest", cmap = plt.cm.gray)
plt.show(block=False)
while True:
A = replicator(A)
img_plot.set_data(A)
plt.draw()
time.sleep(0.05)