Added README to life-001.
authorSiraaj Khandkar <siraaj@khandkar.net>
Tue, 31 Jul 2012 22:37:17 +0000 (18:37 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Tue, 31 Jul 2012 22:37:17 +0000 (18:37 -0400)
001/README.md [new file with mode: 0644]
001/doodles.jpg [new file with mode: 0644]

diff --git a/001/README.md b/001/README.md
new file mode 100644 (file)
index 0000000..0559b79
--- /dev/null
@@ -0,0 +1,35 @@
+life-001
+========
+
+
+Approach
+--------
+The grid is represented as flat list of sequential ID's, where neighbors are
+calculated using the offset relative to the desired length of the printed
+X-axis. See my prototyping doodles at the bottom.
+
+Each cell is represented as a gen_server process named after its corresponding
+ID on the grid and holding the names of its neighbors in its state record.
+
+Likewise, time is represented as a gen_server process which sends ticks to all
+cells and collects state responses, then proceeds to sort and print the
+resulting board - this constitutes one generation.
+
+Upon receipt of a tick, a cell broadcasts its state to its neighbors, then
+proceeds to collect counterpart broadcasts from its neighbors. Upon collection
+of all broadcasts - it calculates its new state and sends it to the time
+process.
+
+Additionally, there's, a non-essential, observer process, whose job is to
+simply log the statistics for each run of the simulation.
+
+
+Usage
+-----
+* Build `make`
+* Run `./bin/life`
+
+
+Doodles
+-------
+![Doodles](https://github.com/ibnfirnas/life/raw/master/001/doodles.png)
diff --git a/001/doodles.jpg b/001/doodles.jpg
new file mode 100644 (file)
index 0000000..963e316
Binary files /dev/null and b/001/doodles.jpg differ
This page took 0.028648 seconds and 4 git commands to generate.