Don't print average lower

This commit is contained in:
Tommi Reiman 2019-02-28 12:08:04 +02:00
parent a9c33de7d1
commit df8cfed125

View file

@ -64,6 +64,4 @@
(do
(when verbose? (println (format "%7s\t%7s" mean lower) "\t" path))
[mean lower]))]
(title (str "average, lower/mean: "
(int (/ (reduce + (map second times)) (count times))) "/"
(int (/ (reduce + (map first times)) (count times)))))))
(title (str "average, mean: " (int (/ (reduce + (map first times)) (count times)))))))