forked from hsayama/PyCX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathca-turing.py
58 lines (46 loc) · 1.36 KB
/
ca-turing.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import pycxsimulator
from pylab import *
width = 50
height = 50
initProb = 0.5
Ra = 1
Ri = 5
Wa = 1
Wi = 0.1
def initialize():
global time, config, nextConfig
time = 0
config = zeros([height, width])
for x in range(width):
for y in range(height):
if random() < initProb:
state = 1
else:
state = 0
config[y, x] = state
nextConfig = zeros([height, width])
def observe():
cla()
imshow(config, vmin = 0, vmax = 1, cmap = cm.binary)
axis('image')
title('t = ' + str(time))
def update():
global time, config, nextConfig
time += 1
for x in range(width):
for y in range(height):
state = config[y, x]
na = ni = 0
for dx in range(- Ra, Ra + 1):
for dy in range(- Ra, Ra + 1):
na += config[(y+dy)%height, (x+dx)%width]
for dx in range(- Ri, Ri + 1):
for dy in range(- Ri, Ri + 1):
ni += config[(y+dy)%height, (x+dx)%width]
if na * Wa - ni * Wi > 0:
state = 1
else:
state = 0
nextConfig[y, x] = state
config, nextConfig = nextConfig, config
pycxsimulator.GUI().start(func=[initialize, observe, update])