|
|
|
|
|
| (..Functions..) | Contents | Index | (Acc. Single Reg...) |
|
We are now going to have a look at a torus that developed from a two-dimensional retina [0,0]..[9,4] by sticking the x1-coordinates together, and a rule which shifts the whole pattern ''clockwise'' in x1 direction, two sites further each time step:
SIGMA torus;
DIMENSION 2; /* 2-dimensional retina */
REGISTER INT state; /* integer register state */
NEIGHBOUR
l_left : (-2,0); /* neighbour */
l_left_behind_border : (8,0); /* substitute */
TABLE
isborder(l_left); : SELF=l_left_behind_border; :
/* otherwise */ : SELF=l_left; :
|
| Source Code: | torus.sdl |
| torus.rdl |
|
|
|
|
|
| (..Functions..) | Contents | Index | (Acc. Single Reg...) |