> Totally simple cellular automata. Not very interesting. The code is
> also very simple.
>
> Stone
> 1995/8/25
>
> * 2Phase ? Two black and white phases.
> * 3Phase ? Amber, green, and black phases.
> * 4Phase ? Black, amber, green, and red phases.
> * 2Phase_1M ? Result is determined base done the two previous
> states.
> * 2Phase_5 ? Result is determined by the previous 5 cell states.
> * 3Phase_5 ? 3Phase version of 2Phase_5.
> * 2PhaseCCA ? Variant of 2Phase based on continuous value of
> cellular automata (Continuous Cellular Automata).
> Formula is A(B),B(A). Takes the weighted average of 5 neighbouring
> cells.
> * 3Phase CCA ? 3Phase version of 2PhaseCCA.
> Formula is A(B+C),B(C+A),C(A+B). This also takes the weighted
> average of 5 neighbouring cells.
>