diff gamelib/constants.py @ 323:978efd39a099

Limit maximum numbe of foxes generated
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 Sep 2009 21:30:18 +0000
parents dd1ffee5ccf5
children b07ea17b8b4e
line wrap: on
line diff
--- a/gamelib/constants.py	Sat Sep 05 19:31:59 2009 +0000
+++ b/gamelib/constants.py	Sat Sep 05 21:30:18 2009 +0000
@@ -53,3 +53,6 @@
         }
 
 TURN_LIMIT = TURN_LIMITS['Two weeks']
+
+ABS_MAX_NUM_FOXES = 50 # Limit possible uppoer number of foxes, due to concerns
+                        # about performance, etc.