Tagged Questions
32
votes
22answers
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
4answers
310 views
Understanding the motion of a disk using two static switches
This is a major re-write of the original question, I tried to clarify those points that were evidently confusing for some in my first version of the question. Thanks for the input in helping formulate ...
7
votes
10answers
2k views
Are there any open-source military/war strategy simulating engines/frameworks?
Are there any open-source military/war strategy simulating engines or frameworks? Combat rules engines or weapon selection guides? I'm looking for something similar to a military strategy "unit ...
4
votes
1answer
415 views
Code Golf: The Unisex Restroom Simulation
Background
The unisex restroom problem is a classical synchronization problem in computer science.
The general class of problems that this simulates is as follows: If you have k types of threads ...
4
votes
7answers
1k views
most readable programming language to simulate 10,000 chutes and ladders game plays?
I'm wondering what language would be most suitable to simulate the game Chutes and Ladders (Snakes and Ladders in some countries). I'm looking to collect basic stats, like average and standard ...
3
votes
9answers
319 views
Run my application in a simulated low memory, slow CPU environment
I want to stress-test my application this way, because it seems to be failing in some very old client machines.
At first I read a bit about QEmu and thought about hardware emulation, but it seems a ...
1
vote
2answers
38 views
Organizing interconnected objects
This is a generic question, I don't know if it belongs to Programming or StackOverflow.
I'm writing a litte simulation. Without going very deep into its details, consider that many kind of identities ...
1
vote
1answer
122 views
Algorithm to simulate in real time some liquid in a 2D container
I'm looking for some algorithms (or some applets/examples with source code) to simulate fluids in a 2D container (which can be moved and rotated).
An example of what I need is a 2D glass with some ...
1
vote
3answers
234 views
Converting a math problem into a discrete-event simulation
I am trying to implement the SIR epidemic model. Basically, the way I understand the model is that at each time step, it tells us how many nodes get infected and how many nodes are recovered. I am now ...
0
votes
2answers
224 views
What is a Calendar Queue?
I am working on a building a discrete event simulator. Wikipedia mentioned that there are several general purpose priority queues that are good for use in DES's. Specifically, it mentions that a ...