Tagged Questions
The cellular-automata tag has no wiki summary.
42
votes
15answers
39k views
Wolfram's Rule 34 in XKCD [closed]
The hover "joke" in #505 xkcd touts "I call rule 34 on Wolfram's Rule 34".
I know what rule 34 is in Internet terms and I've googled up who Wolfram is but I'm having a hard time figuring out what ...
10
votes
9answers
2k views
Algorithms for Simulating Fluid Flow
I've got a game idea that requires some semi-realistic simulation of a fluid flowing around various objects. Think of a pool of mercury on an irregular surface that is being tilted in various ...
7
votes
9answers
418 views
Game of life : how to have “entities” to evolve in parallel?
Ok the title is not clear, here is what I mean.
I am programming some kind of game (like the game of life). For example, there are animals (each animal is a Java instance of a class).
All these ...
6
votes
2answers
524 views
another Game of Life question (infinite grid)?
I have been playing around with Conway's Game of life and recently discovered some amazingly fast implementations such as Hashlife and Golly. (download Golly here - http://golly.sourceforge.net/)
One ...
4
votes
2answers
643 views
Options for Evolving Cellular Automata Rules
I recently started work on a research project that has to do with evolving cellular automata rules (for a given task, follow the link if you're curious).
I am currently evaluating options for tools ...
3
votes
1answer
91 views
What is the network analog of a recursive function?
This is an ambitious question from a Wolfram Science Conference: Is there such a thing as a network analog of a recursive function? Maybe a kind of iterative "map-reduce" pattern? If we add ...
3
votes
1answer
351 views
Texture format for cellular automata in OpenGL ES 2.0
I need some quick advice.
I would like to simulate a cellular automata (from A Simple, Efficient Method
for Realistic Animation of Clouds) on the GPU. However, I am limited to OpenGL ES 2.0 shaders ...
3
votes
3answers
202 views
What algorithm can I implement to speed up some Cellular Automata simulations?
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 ...
2
votes
1answer
301 views
Implement a Cellular Automaton ? “Rule 110”
I was wondering how to use the Rule 110, with 55 lines and 14 cells. I have to then display that in an LED matrix display.
Anyway my question is, how can I implement such automaton ??
I dont really ...
2
votes
1answer
595 views
Cellular Automata in Matlab
I'm currently self-teaching myself matlab, and I'm interested in cellular automata that was exhibited in old programs like Wolfram's Life1D and Conway's Game of Life from the early 1980s. Is there any ...
2
votes
4answers
187 views
Can multithreading affect Conway's Game of Life clone?
I've been implementing this little game idea, which is (somehow?) similar to Conway's Game of Life:
0) You have a matrix of colored dots (RGB values)
1) If the adjacent cell has a lower X value than ...
2
votes
3answers
845 views
Drawing a grid in javascript ( game of life, for example )
Essentially, I had this idea in my head for a sort of evolution simulator, not exactly like Conways Game of Life, but the one part where they do match is that they will both be based on a square grid.
...
1
vote
2answers
328 views
How does this implementation of turing-complete Rule 110 in HTML5+CSS3 work?
This morning, I came across the following implementation of Rule 110 in pure HTML5 + CSS3 (no javascript). You press tab and space in sequence to run the automaton.
...
1
vote
2answers
517 views
Falling Sand simulation
I'm trying to re-create a 'falling sand' simulation, similar to those various web toys that are out there doing the same thing - and I'm failing pretty hard. I'm not really sure where to begin. I'm ...
0
votes
1answer
36 views
Speeding up a Cellular Automata
Is it possible, with some sort of algorithm or something like that, to speed up a cellular automata? I'm using a Conway's Game of Life implementation made in XNA and it works perfectly, but the ...
0
votes
1answer
83 views
Cellular automata implemented in JavaScript and HTML5 Canvas
I implemented a Conway's Game of Life in JavaScript but I'm not seeing the same patterns such as Gosper's Glider Gun. I seed the grid the ways it's depicted in the Wikipedia article but, the gun never ...
0
votes
2answers
155 views
BrainF**k Interpreter using cellular automata
Does any have a set of cellular automata rules for a brain f**k interpreter. I assume it would it be similar to implementations of a universal turing machine. Those exist on wolfram site but I don't ...
0
votes
2answers
133 views
Cellular Automata update rules Mathematica
I am trying to built some rules about cellular automata. In every cell I don't have one element (predator/prey) I have a number of population. To achieve movement between my population can I compare ...
0
votes
4answers
82 views
Definition of Conway's Game of Life / Cellular Automata
this is not actually a programming question, but one the programming community can help me with.
I need to write a SHORT sentence highlighting the implications or purpose(s) of cellular automata / ...
0
votes
0answers
139 views
Cellular-Automata application idea [closed]
I need to implement an application that uses cellular-automata. I don't have an idea on what I can apply them, as for the application to be useful in real life. Any kind of input is appreciated.
0
votes
1answer
414 views
Cellular Automata implementation
Does anybody know how to implement cellular automata in java or c#?
0
votes
1answer
163 views
How to work with this turing machine?
This is a screenshot of the applet LogiCell 1.0, link to which I found here.
As the bottom left corner shows, this is doing sum 0+1 and the result is 01b (bottom right hand side).
I am not able to ...
0
votes
1answer
299 views
simple Sand Pile code in JAVA
does anyone know where I could find the source code for the SandPile (cellular Automata)? thanks in advance!
0
votes
1answer
159 views
Flex Panel not being updated
I am drawing a cellular automaton simulation on a Flex Canvas. I alternate computing the state of the automaton with updating the graphics on the Panel. However, the updating of the Panel does not ...
0
votes
2answers
140 views
how to partition the 2d arrays among the processes for “The Game of Life”
I am doing an assignment using MPI to implement Game of Life. I was wondering if I should use a block-row partitioning, a cyclic row partitioning or a block-checkerboard partitioning?
0
votes
6answers
844 views
Conway's Game Of Life
I am currently writting a programe about Conway's Game of life,and i am really a beginer of python,dont know how to start at all,anybody can help me with it?
-1
votes
2answers
142 views
Simulate Cellular Automata with a four Dimensional Table in Mathematica
In the book Modelling Cellular automata Simulations with mathematica , the author is using the following code to simulate cellular automata in a two dimensional lattice,
From the Moore Neighbourhood ...
-3
votes
1answer
193 views
Cellular automaton and Random movements
How can I have random movements in my Cellular automaton model? For example, if the elements in a cell is much more than two or more neighboring cells I'd like to randomly choose a few neighbors to ...