Removed superfluous imports.
[microbotany.git] / garden.scm
index ac8f4eb..ebcdf77 100644 (file)
@@ -5,7 +5,9 @@
         (chicken io)
         (chicken string)
         (chicken format)
-        srfi-1)
+        (chicken file)
+        (chicken condition)
+        srfi-1 uri-common simple-sha1)
 
 (define rand-double pseudo-random-real)
 
 ;;; Data
 
 (define stage-transition-times
-  '(10 20 30 40 50))
-  ;; (list (* 3600 24)
-  ;;       (* 3600 24 3)
-  ;;       (* 3600 24 10)
-  ;;       (* 3600 24 20)
-  ;;       (* 3600 24 30)))
+  ;; '(10 20 30 40 50)) ; for debugging
+  (list (* 3600 24)
+        (* 3600 24 3)
+        (* 3600 24 10)
+        (* 3600 24 20)
+        (* 3600 24 30)))
 
 (define stages
   '(seed seedling young mature flowering seed-bearing))