Tagged Questions

From Wikipedia: The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970. The "game" is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One ...

learn more… | top users | synonyms

65
votes
22answers
5k views

Code Golf: Conway's Game of Life

The Challenge: Write the shortest program that implements John H. Conway's Game of Life cellular automaton. [link] EDIT: After about a week of competition, I have selected a victor: pdehaan, for ...
34
votes
24answers
9k views

Writing A “Conway's Game of Life” Program

Alright, so I've always wanted to write myself a nice little Game of Life program where you could play with the rules and adjust the number of cells and such; I've just never really had the time to ...
9
votes
6answers
431 views

What's an efficient implementation of Conway's Game of Life for low memory uses?

I'm looking for a fast and memory efficient approach for implementing Conway's Game of Life. Constraints: a 96x128 board, approximately 2kB RAM available and 52MHz processor (see the tech specs here: ...
8
votes
7answers
361 views

What do you call this JavaScript syntax, so I can research it?

1) In the following code, what is the reasoning behind making gameOfLive a variable and not just function gameOfLife()? 2) What is gol? It seems like an array, but I am unfamiliar with the syntax or ...
7
votes
9answers
3k views

Optimizing Conway's 'Game of Life'

To experiment, I've (long ago) implemented Conway's Game of Life (and I'm aware of this related question!). My implementation worked by keeping 2 arrays of booleans, representing the 'last state', ...
6
votes
5answers
1k views

Multithreaded Java Program for Conway's game of life - contention at the border cells

I am learning concurrent programming in java, and writing a simulation for Game of Life. Here is what I am thinking: Use int[][] to store the states of the cells partition the int[][] into t ...
6
votes
2answers
547 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
6answers
5k views

How can you make Game of life in Excel?

I know only little how to make macros in Excel.
3
votes
1answer
197 views

Tweaking MIT's bitcount algorithm to count words in parallel?

I want to use a version of the well known MIT bitcount algorithm to count neighbors in Conway's game of life using SSE2 instructions. Here's the MIT bitcount in c, extended to count bitcounts > 63 ...
3
votes
3answers
463 views

Why is my game-of-life code so verbose?

I've tried and tried and tried, but I still have the feeling that this is bloated, and probably taking up too much disk space! I'm sorry for wasting your bandwidth with it too: class String;def i ...
3
votes
4answers
564 views

Game of Life Assignment

My board correctly detects groups with less than 3 neighbors and kills them off, but doesn't seem to detect and give birth to cells with 3 neighbors. Any thoughts? If I haven't provided enough ...
3
votes
1answer
196 views

Implementing Conway's Game of Life in JavaScript with <canvas>

I've got some problems implementing Conway's Game of Life in JavaScript. At the German Wikipedia it says that this pattern here: Will create an empty world after 54 generations and the evolution ...
3
votes
2answers
547 views

Game of life in F# with accelerator

I'm trying to write life in F# using accelerator v2, but for some odd reason my output isn't square despite all my arrays being square - It appears that everything but a rectangular area in the top ...
2
votes
3answers
100 views

How to declare a two-dimensional array in Ruby

I want a twodimensional array in Ruby, that I can access for example like this: if @array[x][y] == "1" then @array[x][y] = "0" The problem is: I don't know the initial sizes of the array dimensions ...
2
votes
3answers
62 views

Game of Life(PHP)- not understanding my output

So, basically, I've been writing this Game of Life PHP script. My output is wack and I can't figure it out! The whole scheme consists of a 2-dimensional array called $world in which each value ...
2
votes
1answer
63 views

Conway's Game of Life with Python

I took a liking to Conway's Game of Life and began to try and write it in python. At this moment I have yet to write any code for the borders of the program so I am just asking for help with what I ...
2
votes
1answer
162 views

Issue with Game of Life

I'm working on a Java implementation of Conway's game of life as a personal project for myself. So far it works but the rules are coming out wrong. The expected patterns aren't showing up as well as ...
2
votes
1answer
87 views

Getting values from previous “row” in 2D C array

I'm working on a 1D Game of Life (based upon the rules set out here at Mathworld). Essentially, each generation is represented as a row of 0's or 1's (dead or alive) and the next generation is created ...
2
votes
3answers
100 views

How to programatically call a button that runs as an independent task?

I have implemented Conway's Game of Life problem in Java swing. Everything is working fine. As you can see in the screenshot below, whenever the "Tick" button is clicked, the game progresses to the ...
2
votes
2answers
118 views

Game of Life in Perl — Problem translating code from C++

I recently started to try to copy C++ code of Conway's Game of Life that I wrote into Perl, and I copied it almost word-for-word. However, the output of the C++ code is vastly different from the Perl ...
2
votes
3answers
239 views

Optimising the game of life

I'm writing a game of life program in mathematica however there is a caveat in that I need to be able to apply the reproduction rules to some percentage of the cells, I want to try a new method using ...
2
votes
4answers
283 views

Best way to render a bitmap/bitarray to 2d plane (with OpenGL)

Ok, this is what I have. I have a 1d bitmap (or bitarray, bitset, bitstring, but I'll call it a bitmap for now) containing the live or dead states from a conway game of life generation. The cell at ...
2
votes
1answer
618 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 ...
1
vote
2answers
51 views

Java - the game of Life; problems with life detection

I'm attempting the Game of Life - what I'm stuck on is determining whether a space should be alive or dead based on the area around it. I'm at the point where I can't tell what I'm doing wrong - ...
1
vote
1answer
97 views

How do I go about making this Conways Life program in java

I am making a Conway's Game of Life program in java, and am trying to change it from the command line version to a GUI. From the command line I just printed an array which showed the generations (the ...
1
vote
1answer
79 views

I want to find the binary operations that transform an input to an output

Given the input and the output: Input Output 10011100 10010100 10000100 00000000 11111100 10000100 10000011 00000011 10100010 10100010 Are there any operations that can be performed on the ...
1
vote
1answer
266 views

Program takes too much memory

I'm using WPF to develop a simulator of Conway's Game of Life. From some reason, sometimes the program takes up to 400,000K memory (When I draw a lot of cells really fast). How can I reduce the ...
1
vote
5answers
195 views

Fast linear list that excludes duplicates

I have the following code: procedure TCellBlock.GeneratePtoQ; var x,y: integer; i: integer; Change: cardinal; begin i:= 0; //Walk the grid of changed (alive) cells for x:= GridMaxX ...
1
vote
2answers
414 views

cuda kernel for conway's game of life

I'm trying to calculate the number of transitions that would be made in a run of Conway's GOL for a pxq matrix for n iterations. For instance, given 1 iteration with the initial state being 1 blinker ...
1
vote
5answers
315 views

Game of Life memory optimization

Hi I have written a simple game of life code in that uses 2 arrays, one which maintains current state and another which maintains next state. Can anyone suggest how to optimize this program for ...
0
votes
2answers
49 views

Writing a Java program to run with a pre-built interface (the Life game) but I'm having trouble

Here's my code: http://pastebin.com/umy0FPvB (LG) and here's the teacher's code: http://pastebin.com/y5wU0Zpx (LCI) It's telling me I'm wrong on line 41 of the teacher's code when the LCI is trying ...
0
votes
3answers
88 views

Conways game - accessing out of bound data

This is my Conway's Game of Life C code. Function newgen checks neighboring cells, all eight of them, even if cell is on the edge of the matrix. How can I change it in a way that won't results in ...
0
votes
1answer
91 views

How to dynamically render partial HTML in Ruby on Rails page?

I'm attempting to build an implementation of Conway's Game of Life in a Ruby on Rails web-app to get adjusted to the framework. However, I'm running into a bit of a problem. The way that I want the ...
0
votes
1answer
71 views

How to find minimum and maximum of cartesian co-ordinates in Scala

I am trying to solve GameOfLife in Scala where I have an infinte grid. I am trying to represent the grid as a Set of Cell(x,y). When I read from say String I start at (0,0). But because of the laws of ...
0
votes
1answer
41 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
3answers
82 views

2D Arrays and Null Pointer Exceptions (Java)

I don't really know what's causing this problem but my program, which is supposed to be Conway's Game of Life, crashes after 2 generations, seemingly no matter what I do, and I've been trying for days ...
0
votes
3answers
30 views

Is hashing a good way to compare two 32x64 two dimensional arrays exactly?

I'm trying to implement Conway's Game of Life on an embedded device. I've only got 1kb of RAM to play with and in total there are 2048 cells which equals 512 bytes. I'm going to calculate the next ...
0
votes
4answers
89 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
1answer
280 views

Please help with my basic java implementation of Conway's game of life

I have spent quite a while trying to write a program to implement Conway's game of life - Link with more info. . I am following some online guides and was given the majority of the functions. I wrote ...
0
votes
1answer
204 views

Why is my C++ Game of Life not working properly?

This compiles and runs okay, but the results are totally different from what they should be. I've snipped irrelavent code: bool grid[1280][1024]; // hardcoded to my screen res for now for (int x = ...
0
votes
2answers
568 views

Game of life in C#

Can we represent Conway's game of life using graphs? And is there any example out there? Or any help would be much appreciated.
0
votes
1answer
283 views

Using game of life or other virtual environment for artificial (intelligence) life simulation? [closed]

One of my interests in AI focuses not so much on data but more on biologic computing. This includes neural networks, mapping the brain, cellular-automata, virtual life and environments. Described ...
0
votes
6answers
856 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?
-2
votes
1answer
159 views

game of life in C

Just thought I'd take a crack at Conway's Game of Life, but am seriously struggling...which is a surprise! Can someone maybe hint at algorithmic issues? Just a small nudge? This ain't homework. ...