Problem with rule table

For discussion of other cellular automata.
Post Reply
User avatar
gameoflifemaniac
Posts: 1242
Joined: January 22nd, 2017, 11:17 am
Location: There too

Problem with rule table

Post by gameoflifemaniac » July 12th, 2017, 4:34 pm

Tried to create random rule table:

Code: Select all

@RULE 345v893475v3b80613v5xct3egw238

@TABLE

n_states: 10
neighbourhood:Moore
symmetries:none

var a={0,1,2,4,7,9}
var b={5,6,7,8,9}

0,1,3,9,3,0,9,8,4,1
8,3,9,3,9,3,9,3,0,5
1,0,4,7,5,8,4,9,3,5
1,9,4,7,5,8,4,9,3,7
3,1,9,3,8,7,4,9,4,7
1,7,6,4,1,9,7,2,8,9
2,9,8,7,5,5,9,3,8,7
1,9,8,7,4,9,8,7,4,9
1,9,8,7,5,9,6,5,9,2
2,9,8,7,2,0,1,0,9,8
1,9,8,7,5,9,4,8,7,9
0,9,0,0,0,0,0,0,0,1
1,0,9,8,4,1,0,9,3,8
1,3,4,7,4,7,8,9,9,7
1,2,8,7,1,9,8,7,a,6
b,a,b,b,b,b,a,a,3,5
2,9,8,4,7,2,9,a,b,2
0,0,0,0,0,0,0,0,0,0

@COLORS
1 220 0 0
2 69 3 57
3 98 79 218
4 59 109 196
5 93 38 98
6 2 9 76
7 76 76 76
8 43 49 80
9 28 74 25
but it didn't work.
Error reading 345v893475v3b80613v5xct3egw238.rule: one or more of n_states, neighbourhood or symmetries missing
before first transition
I was so socially awkward in the past and it will haunt me for the rest of my life.

Code: Select all

b4o25bo$o29bo$b3o3b3o2bob2o2bob2o2bo3bobo$4bobo3bob2o2bob2o2bobo3bobo$
4bobo3bobo5bo5bo3bobo$o3bobo3bobo5bo6b4o$b3o3b3o2bo5bo9bobo$24b4o!

drc
Posts: 1664
Joined: December 3rd, 2015, 4:11 pm

Re: Problem with rule table

Post by drc » July 12th, 2017, 4:38 pm

I'm pretty sure it's neighborhood in Golly.

Code: Select all

@RULE 345v893475v3b80613v5xct3egw238

@TABLE

n_states: 10
neighborhood:Moore
symmetries:none

var a={0,1,2,4,7,9}
var b={5,6,7,8,9}

0,1,3,9,3,0,9,8,4,1
8,3,9,3,9,3,9,3,0,5
1,0,4,7,5,8,4,9,3,5
1,9,4,7,5,8,4,9,3,7
3,1,9,3,8,7,4,9,4,7
1,7,6,4,1,9,7,2,8,9
2,9,8,7,5,5,9,3,8,7
1,9,8,7,4,9,8,7,4,9
1,9,8,7,5,9,6,5,9,2
2,9,8,7,2,0,1,0,9,8
1,9,8,7,5,9,4,8,7,9
0,9,0,0,0,0,0,0,0,1
1,0,9,8,4,1,0,9,3,8
1,3,4,7,4,7,8,9,9,7
1,2,8,7,1,9,8,7,a,6
b,a,b,b,b,b,a,a,3,5
2,9,8,4,7,2,9,a,b,2
0,0,0,0,0,0,0,0,0,0

@COLORS
1 220 0 0
2 69 3 57
3 98 79 218
4 59 109 196
5 93 38 98
6 2 9 76
7 76 76 76
8 43 49 80
9 28 74 25

Post Reply