Skip to content

Commit

Permalink
* benchmark/cljs/benchmark_runner.cljs: change iters for satisfies? b…
Browse files Browse the repository at this point in the history
…ench
  • Loading branch information
David Nolen authored and David Nolen committed May 21, 2012
1 parent d6520c4 commit d33e08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/cljs/benchmark_runner.cljs
Expand Up @@ -7,8 +7,8 @@
(set! *print-fn* js/print)

(println ";;; satisfies?")
(simple-benchmark [coll (list 1 2 3)] (satisfies? ISeq coll) 10000000)
(simple-benchmark [coll [1 2 3]] (satisfies? ISeq coll) 10000000)
(simple-benchmark [coll (list 1 2 3)] (satisfies? ISeq coll) 1000000)
(simple-benchmark [coll [1 2 3]] (satisfies? ISeq coll) 1000000)
(println)

(println ";;; list ops")
Expand Down

0 comments on commit d33e08b

Please sign in to comment.