bones-test.asd @ 209ecb9eeb25

Use a queues instead of lists for the logic frame pending predicates

I wonder if this is ACTUALLY faster, since often there will probably only be
a couple of entries in a particular predicate's list?  But then again there are
some HUGE predicates (e.g. successor relations), so it'll benefit us there.

Either way, conceptually the thing should be FIFO, so as long as using queues
doesn't COST us performance I'm happy.
author Steve Losh <steve@stevelosh.com>
date Tue, 05 Jul 2016 23:37:14 +0000
parents 14de0f74d3e2
children 5c914fbcb042
(asdf:defsystem #:bones-test
  :description "Test suite for bones."
  :author "Steve Losh <steve@stevelosh.com>"
  :license "MIT/X11"
  :depends-on (#:bones
               #:fiveam)
  :serial t
  :components ((:file "package-test")
               (:module "test"
                :serial t
                :components ((:file "bones")
                             (:file "circle")
                             (:file "paip")
                             (:file "wam")))))