The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.
0
votes
4answers
62 views
C programming - array size based on command line argument
I'm trying to make a grid for a board game, i know the maximum size the board can be however it can also be smaller based on what the user inputs in the command line. I have made the following ...
-5
votes
1answer
55 views
C-programming board game [duplicate]
I am trying to make a board game with Maximum board width 80 cells and Maximum board height 52 cells, however the user should be able to choose the dimensions by entering them into the command line, ...
0
votes
0answers
38 views
How to go about creating a GUI for Conway's Game of Life? [closed]
I want to have a static grid with small cells that the user can click-drag his mouse over to select/deselect cells. On the bottom of this grid is a few buttons like start, clear, & random cell ...
0
votes
0answers
53 views
2D arrays and Game of Life
Game of Life -- I can't quite understand how to properly check for neighbors..
Can anyone tell me why my right border and top border arn't acting properly, that is anything placed in them is deleted? ...
1
vote
1answer
60 views
C++/Linux - Drawing to a Window
I"m taking an object oriented programming class, and we just did a project where we had to implement Conway's Game of Life. The project specification was just to output lines of text to the terminal, ...
3
votes
1answer
130 views
Game of Life in Java, Overpopulation but can't figure out why
This is homework. I included relevant code at the bottom.
Problem:
In an attempted to allow the user to resize the grid, the grid is now being drawn severely overpopuated.
Screen Shots:
...
-1
votes
1answer
54 views
why does my program crash after 5 minutes of runtime when choosing option 1? [closed]
this is the conways game of life that i have to do for my assignment and it crashes after a few minutes of runtime, when selecting option number 1 why would it do this? i hope my code is showing ...
0
votes
1answer
65 views
Why this syntax error in function conway's game of life in Python? [closed]
I'm programming Conway's game of life in Python but stumbled upon a weird syntax error. It's in the first function i'm defining. It sais that nextnext in nextnext= [] in wrong. If i take that out the ...
0
votes
1answer
117 views
How to sum up the value of neigburs in matlab? [duplicate]
I'm new to matlab and trying to code game of life. But i have some difficulties making the sum of the neigbors. Every cell can have a value of 0 or 1. I'm trying to use a counter (like in Python, the ...
0
votes
1answer
184 views
What's wrong with this game of life in Matlab?
I'm trying to code Conway's game of life in Matlab but something keeps going wrong. I don't get an error so I don't really know what I'm doing wrong, it just doesn't do anything. I think the problem ...
0
votes
1answer
324 views
Infinite Board: Conway's Game of Life - Python
I was assigned this project with instructions below:
The game of Life is defined for an infinite-sized grid. In Chapter 2, we defined the Life Grid ADT to use a fixed-size grid in which the user ...
0
votes
2answers
106 views
Trouble with Game of Life and dynamic arrays, c++
I am trying to program the game of life. When I attempt to iterate generations I end up with garbage. I have tried quite a few different things but I don't see my error, but obviously there is one. ...
0
votes
1answer
152 views
Can someone please tell me why my Game of Life code wont work?
There are no errors showing up in eclipse, but when I go to run the code, nothing happens in the application. It is broken up into three classes. The first class contains the if statements. I am ...
-1
votes
1answer
102 views
Conway's Game of Life in Processing [closed]
So, the code is compiling and running perfectly. However, usually, Conway's Game of life stabilizes after some time, while this code keeps running indefinitely without ever getting a dead branch, and ...
0
votes
3answers
96 views
Explain the use of yields in this Game of Life implementation
In this PyCon talk, Jack Diederich shows this "simple" implementation of Conway's Game of Life. I am not intimately familiar with either GoL or semi-advanced Python, but the code seems quite easy to ...
1
vote
1answer
99 views
Conway's game of life problems (java)- multiple issues [closed]
I'm having a bit of a problem with my Conway's game of life. What is supposed to happen in this case is that the user enters in the dimensions of the array, number of iterations, and the coordinates ...
0
votes
0answers
25 views
How can I create a window that just displays a simple gird (Looks something like graph paper)
I'm working on creating my own version of something similar to conway's game of life, so I am trying to make a Window pop up, I'll probably just use some sort of JPanel, but i need to draw a grid on ...
0
votes
2answers
151 views
Why the canvas widget into Tkinter with Python 3 is slow?
I've just started to use the Tkinter module with Python(3.2), so I decided to rewrite my old program(I used curses module) with this module.
The program is a Game of Life simulator.
The algorithm I've ...
0
votes
1answer
112 views
Conway's game of life algo [closed]
does anybody know how to create next generation in game of life knowing only where are living cells , i mean their coordinates (so that an algorithm was linear with number of living cells)? Thanks a ...
3
votes
1answer
166 views
Game of life rules not working properly
I have the following logic code for my Game of Life application in Java. I have the problem that the rules do not act like the default Conway's Game of Life rules. I have read up on them on Wikipedia, ...
1
vote
1answer
287 views
Game of Life with OpenMP
I did a sequential version of game of life, but now I need to make a parallel version of my code using OpenMP, but I am having some issues with it.
If anyone could help me, it would be very nice. ...
0
votes
3answers
110 views
Temporary Array [closed]
I'm writing a program based on John Conway's Game of Life. I got it to compile and Even run after days of working on it non stop. However, the result it is printing out is wrong...
This is my code ...
2
votes
1answer
139 views
Game of life hash table .h file template issues
I am trying to simulate Conway's game of life using an implementation file I created, I have made good progress but unfortunately I am getting an error which confuses me. I think the problem is ...
0
votes
1answer
241 views
Can't add components to a class that extends JFrame
I'm trying to write the game of life. However, no matter how hard I try, I can't seem to add Cell components onto the frame with the buttons. They do appear if I make a new frame and add them, but ...
1
vote
2answers
82 views
Cheking the surrounding indexes around an index in 2d matrix
I'm working on the Conway's game of life program and I'm at the point where the dead/live cell checks it's surrounding neighbors and counts the amount of live neighbors surrounding it. Right now, I'm ...
0
votes
1answer
90 views
Golly game of life in a gif
I have a talk in a few days. I have to make a reference to the cellular atomata. I would like to show a little gif in the slideshow where the evolution of cellular automata is shown, so my question ...
-1
votes
1answer
514 views
Game of Life, Calculate neighbors Java
for homework we have to program Conway's Game of Life in Java.
But I have a problem to calculate the number of neighbors correctly.
We have to use a class Cell which represents the cells in our 2 ...
1
vote
1answer
189 views
Best fit design pattern for Conway's Game of life
I am writing a Java program for GOL and wondering which design pattern will be a best fit. I am considering to use State Pattern as it allows objects to alter their behavior based on their state. What ...
1
vote
2answers
192 views
Game of LIfe Hashing Python
I'm trying to create a simple Game of Life by storing Cell objects into a set (have to use classes) and I reach the problem in which I cannot add the cell object into the Set because it is ...
1
vote
1answer
139 views
How is the Conway's Game of Life implemented in Conway's Game of Life?
I just came across http://www.youtube.com/watch?feature=player_embedded&v=xP5-iIeKXE8 , which is an implementation of Conway's Game of Life in ... Conway's Game of Life.
I think it is possible to ...
0
votes
3answers
505 views
Game of life Algorithm/ Structure of if else statements
I'm currently in an intro to programming in Java class and I've ran into a problem or two.
First off my currently program is "Conway's Game of Life" I've got everything working except for the ...
-1
votes
2answers
283 views
How to count live neighbours of a cell in Conway's Game of Life?
I'm implementing Conway's game of life. I've read in the inittal board and now I need to program it to count live neighbors of a cell.
Some basic rules
Any live cell with fewer than two live ...
1
vote
1answer
203 views
How to print a board in Java for Conway's Game Of Life
Ok, so my homework question is on Conway's Game Of Life. I'm not the best programmer so I'm having trouble with this one. We don't have to create an actual animation; just print to the console.
The ...
9
votes
1answer
538 views
Haskell parMap and parallelism
I have an implementation of Conway's Game of Life. I want to speed it up if possible by using parallelism.
life :: [(Int, Int)] -> [(Int, Int)]
life cells = map snd . filter rules . freq $ ...
1
vote
2answers
182 views
Game of life - input for toad pattern
Can anyone please confirm for game of life:
if inputs
- - - -
- x x x
x x x -
- - - -
and
- x x x
x x x -
are similar . If yes. how ?? please explain.
For background on "game of life" ...
1
vote
1answer
86 views
Segfault in gtkmm implementation of conway's game of life
As mentioned in the question, I have a segfault in the implementation of Conway's game of life in gtkmm that I am working on.
It can be found here: https://github.com/sakekasi/game-of-life
The ...
-1
votes
2answers
344 views
Game of life problems, C++
I am having problems with my Game Of Life assignment. There are two things not working correctly:
The game runs too many generations (twice the number entered)
It does not update the generations ...
0
votes
1answer
439 views
conway's game of life doesn't work as expected
I was trying to create conway's game of live in java. I've no trouble with my code, but with the output of the game. The still lifes pattern work as expected, but all the moving sructures are ending ...
2
votes
2answers
431 views
Toad pattern in game of life
I was trying to solve the Game of life problem for a test. Rules of that game are:
Any live cell with fewer than two live neighbors dies, as if caused by under-population.
Any live cell with two or ...
0
votes
1answer
260 views
Conway's game of life detecting extra live cells
I am in the midst of writing Conway's game of life, but my detection of the live cells reveals a few extras the code throws in when I try to set up a blinker (3 live cells in a row) with the cell ...
4
votes
1answer
826 views
Conway's Game of Life GUI
I have been working on a copy of Conway's GOL for class and I'm having an issue when the GUI renders.
Quick rundown:
GUI Creates a Frame and a mainPanel, set to BorderLayout.
Once I instantiate the ...
1
vote
1answer
167 views
Main class in clojure, leiningan (Conway's game of life)
Hi guys! I'm running Conway's game of life - but I think I had to modify the original version here: https://github.com/sebastianbenz/clojure-game-of-life to reference field.clj (rather than run.clj) ...
0
votes
1answer
1k views
How to make a C Program for Game of Life using text file
I was asked to:
Create an ANSI C program that will read a textfile containing a 25 x 25 matrix of the character ‘x’ or the blank space.
Display the initial generation using the function printf.
...
0
votes
1answer
294 views
A suitable game of life seed for testing [closed]
I have just finished creating a game of life simulation for c# and found one of the most confusing aspects was whether the seed I was using would actually work.
The following are seeds that can be ...
-1
votes
2answers
122 views
C 2D-array Structs Comparison Problems [closed]
This is my second C assignment and we have been told to recreate a version of Conway's Game of Life. I am using a struc (typedef) to hold my 2d array of ints for the grid created with:
typedef int ...
0
votes
2answers
305 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 ...
1
vote
2answers
363 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 - ...
2
votes
3answers
5k 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 ...
0
votes
3answers
495 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
593 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 ...
