Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
changed ants constants
  • Loading branch information
dev8d committed Feb 24, 2010
1 parent e392117 commit 0fb1b1f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ants.clj
Expand Up @@ -8,9 +8,9 @@
; You must not remove this notice, or any other, from this software.

;dimensions of square world
(def dim 80)
(def dim 160)
;number of ants = nants-sqrt^2
(def nants-sqrt 7)
(def nants-sqrt 2)
;number of places with food
(def food-places 35)
;range of amount of food at a place
Expand All @@ -20,10 +20,10 @@
;scale factor for food drawing
(def food-scale 30.0)
;evaporation rate
(def evap-rate 0.99)
(def evap-rate 0.99 )

(def animation-sleep-ms 100)
(def ant-sleep-ms 40)
(def animation-sleep-ms 30)
(def ant-sleep-ms 60)
(def evap-sleep-ms 1000)

(def running true)
Expand Down

0 comments on commit 0fb1b1f

Please sign in to comment.