scully.asd @ 67daea4e67cb

Don't bother using uninterned keyword symbols

It's 2016, we've got enough memory to spare.
author Steve Losh <steve@stevelosh.com>
date Thu, 27 Oct 2016 14:18:14 +0000
parents 80c4579fefce
children 71d4c16c607c
(asdf:defsystem :scully
  :name "scully"
  :description "A General Game Player for incomplete-information games"

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:iterate
               :losh
               :temperance
               :hunchentoot
               :optima
               :smug
               :cl-dot
               :cl-algebraic-data-type
               :cl-arrows
               :cl-ggp)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "gdl")
                             (:file "rule-trees")
                             (:file "zdd")
                             (:module "reasoners" :serial t
                              :components ((:file "prolog")))
                             (:module "grounders" :serial t
                              :components ((:file "prolog")
                                           (:file "fluxplayer")))
                             (:module "players" :serial t
                              :components ((:file "random")
                                           (:file "random-ii")))))))