Implement Conway's Life cell.
authorSiraaj Khandkar <siraaj@khandkar.net>
Wed, 25 Sep 2013 21:29:39 +0000 (17:29 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Wed, 25 Sep 2013 21:31:15 +0000 (17:31 -0400)
polymorphic-life/001/src/polymorphic_life.ml

index ca6d819..9a9163e 100644 (file)
@@ -56,6 +56,24 @@ module type CELL = sig
 end
 
 
+module Conway : CELL = struct
+  type t = D | A
+
+  let state = function
+    | D -> 0
+    | A -> 1
+
+  let react t ~states =
+    let live_neighbors = List.fold_left states ~init:0 ~f:(+) in
+    match t with
+    | A when live_neighbors < 2 -> D
+    | A when live_neighbors < 4 -> A
+    | A when live_neighbors > 3 -> D
+    | D when live_neighbors = 3 -> A
+    | t -> t
+end
+
+
 let main () =
   let pool = Matrix.create ~rows:5 ~cols:5 ~data:() in
   Matrix.iter pool ~f:(
This page took 0.017474 seconds and 4 git commands to generate.