From 2ebbecfc32a4aa045e20dca002f4ae132eb046b3 Mon Sep 17 00:00:00 2001 From: Josh Hofing Date: Mon, 14 Jan 2013 10:36:23 -0500 Subject: [PATCH] It's von Neumann neighborhoods, not Moore. Oops. --- src/rules/Conway4.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/Conway4.java b/src/rules/Conway4.java index bd140fe..bf6f9e9 100644 --- a/src/rules/Conway4.java +++ b/src/rules/Conway4.java @@ -3,7 +3,7 @@ package edu.stuy.goldfish.rules; import edu.stuy.goldfish.Grid; import edu.stuy.goldfish.Patch; -// An implementation of conway using Moore Neighborhoods. +// An implementation of conway using von Neumann Neighborhoods. public class Conway4 extends RuleSet { public static int states = 2;