Skip to content

Commit

Permalink
Fix benchmark, fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
phoe committed Nov 29, 2020
1 parent 7b023e0 commit e10ec5b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions priority-queue-benchmark/benchmark.lisp
Expand Up @@ -18,16 +18,16 @@
'(:increasing :decreasing :shuffled :zero))

(defparameter *test-functions*
(list #'test-pettomato-indexed-priority-queue
#'test-priority-queue
#'test-queues
#'test-pileup
#'test-bodge-heap
#'test-cl-heap
#'test-heap
#'test-minheap
#'test-damn-fast-priority-queue
#'test-damn-fast-stable-priority-queue))
(list 'test-pettomato-indexed-priority-queue
'test-priority-queue
'test-queues
'test-pileup
'test-bodge-heap
'test-cl-heap
'test-heap
'test-minheap
'test-damn-fast-priority-queue
'test-damn-fast-stable-priority-queue))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; Performance testq
Expand Down

0 comments on commit e10ec5b

Please sign in to comment.