I am writing a ncurses based C.A. simulator for (nearly) any kind of C.A. which uses the Moore or Neumann neighborhoods.

With the current (hardcoded and most obvious [running state funcs]) the simulation runs pretty well; until the screen is filled with 'on' (or whatever active) cells.

So my question is: Are there any efficient algorithms for handling at least life-like rules? or Generations, Weighted life/generations...

Thanks.

link|improve this question

75% accept rate
1  
I recently wrote a CA which ran on the GPU, you might want to consider that. – Martin Oct 27 '09 at 11:06
feedback

3 Answers

it's generally nice to only run update passes in areas of the grid that had activity in the previous time step. if you keep a boolean lattice of "did i change this time?" for each pass, you only need to update cells within one radius of those with an "on" in the change lattice.

link|improve this answer
feedback

I think writing state machines is not as much algorhitms designing problem as is just problem how to write clean and "bug free" code. What are you probably looking for is implementation of cellular automata / state chart.

http://www.state-machine.com/ //<- no this is not coincidence http://www.boost.org/doc/libs/1%5F40%5F0/libs/statechart/doc/index.html

You might also try whit stackless python http://stackless.com/. It can be used for state machines or CA. Here http://members.verizon.net/olsongt/stackless/why%5Fstackless.html#the-factory it is tutorial for stackless implementing factory process simulation

link|improve this answer
well i do not want general purpose state-machines, nor clean code, really i want to optimize celular automata simulation execution (faster). – zkp0s Oct 27 '09 at 22:42
Then just make one big ugly switch, or maybe better just code whit lo of gotos. Do not have better idea. State machines can not be optimised whit generic algorhitm. – ralu Oct 27 '09 at 23:55
and tell me about hashlife. I repeat, I Don want to have general purpose state-machines but some optimizations on certain common Celular Automata rules – zkp0s Oct 28 '09 at 23:26
feedback

You could look into the HashLife algorithm and try to adapt its concept to whatever automata you are working on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.