diff options
Diffstat (limited to 'benchmarks/benchmark.scm')
-rw-r--r-- | benchmarks/benchmark.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/benchmark.scm b/benchmarks/benchmark.scm index 927fe15..1bd1f74 100644 --- a/benchmarks/benchmark.scm +++ b/benchmarks/benchmark.scm @@ -2,7 +2,7 @@ ;; Simple benchmarking program to compare set-difference on hash ;; tables, lsets and slsets. ;; -;; Note that the tests for slsets is severely disadvantaged because +;; Note that the tests for slset is severely disadvantaged because ;; the hash tables are created with the size of the set, which ;; normally would not be the case because you can't predict ahead of ;; time how big it would get. Also, the symbols have a short string @@ -11,7 +11,7 @@ (declare (disable-interrupts)) -(import (chicken fixnum) (chicken string) (chicken process-context) (chicken time) (only srfi-1 lset-difference) srfi-69 slsets) +(import (chicken fixnum) (chicken string) (chicken process-context) (chicken time) (only srfi-1 lset-difference) srfi-69 slset) (unless (= (length (command-line-arguments)) 2) (error "Need impl name (one of lset, slset, (cached-)symbolset, (cached-)hash-table or (cached-)srfi-69) and set size (number or 'loop')")) |