# HG changeset patch # User Steve Losh # Date 1477577894 0 # Node ID 67daea4e67cbbfb81fa2debe4b6e2675c32180ad # Parent 80c4579fefce3b67de21dbe789d342c8e7814730 Don't bother using uninterned keyword symbols It's 2016, we've got enough memory to spare. diff -r 80c4579fefce -r 67daea4e67cb package.lisp --- a/package.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/package.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,96 +1,96 @@ -(defpackage #:scully.gdl +(defpackage :scully.gdl (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:temperance - #:scully.quickutils) + :cl + :losh + :iterate + :cl-arrows + :temperance + :scully.quickutils) (:export - #:read-gdl - #:load-rules - #:redump-gdl)) + :read-gdl + :load-rules + :redump-gdl)) -(defpackage #:scully.rule-trees +(defpackage :scully.rule-trees (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:scully.quickutils) + :cl + :losh + :iterate + :cl-arrows + :scully.quickutils) (:export)) -(defpackage #:scully.zdd +(defpackage :scully.zdd (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:scully.quickutils) + :cl + :losh + :iterate + :cl-arrows + :scully.quickutils) (:export)) -(defpackage #:scully.reasoners.prolog +(defpackage :scully.reasoners.prolog (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:temperance - #:scully.quickutils) + :cl + :losh + :iterate + :cl-arrows + :temperance + :scully.quickutils) (:export - #:prolog-reasoner - #:make-prolog-reasoner - #:load-rules - #:initial-state - #:terminalp - #:next-state - #:legal-moves-for - #:percepts-for - #:roles + :prolog-reasoner + :make-prolog-reasoner + :load-rules + :initial-state + :terminalp + :next-state + :legal-moves-for + :percepts-for + :roles )) -(defpackage #:scully.grounders.prolog +(defpackage :scully.grounders.prolog (:use - #:cl - #:losh - #:iterate - #:optima - #:cl-arrows - #:temperance - #:scully.quickutils) + :cl + :losh + :iterate + :optima + :cl-arrows + :temperance + :scully.quickutils) (:export )) -(defpackage #:scully.grounders.fluxplayer +(defpackage :scully.grounders.fluxplayer (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:smug - #:scully.quickutils) + :cl + :losh + :iterate + :cl-arrows + :smug + :scully.quickutils) (:export - #:ground-gdl-file - #:ground-gdl-string)) + :ground-gdl-file + :ground-gdl-string)) -(defpackage #:scully.players.random +(defpackage :scully.players.random (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:scully.quickutils - #:scully.reasoners.prolog) + :cl + :losh + :iterate + :cl-arrows + :scully.quickutils + :scully.reasoners.prolog) (:export )) -(defpackage #:scully.players.random-ii +(defpackage :scully.players.random-ii (:use - #:cl - #:losh - #:iterate - #:cl-arrows - #:scully.quickutils - #:scully.reasoners.prolog) + :cl + :losh + :iterate + :cl-arrows + :scully.quickutils + :scully.reasoners.prolog) (:export )) diff -r 80c4579fefce -r 67daea4e67cb scully.asd --- a/scully.asd Thu Oct 27 14:16:07 2016 +0000 +++ b/scully.asd Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(asdf:defsystem #:scully +(asdf:defsystem :scully :name "scully" :description "A General Game Player for incomplete-information games" @@ -7,16 +7,16 @@ :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) + :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 diff -r 80c4579fefce -r 67daea4e67cb src/gdl.lisp --- a/src/gdl.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/gdl.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.gdl) +(in-package :scully.gdl) (defun read-gdl (filename) (let ((*package* (find-package :ggp-rules))) diff -r 80c4579fefce -r 67daea4e67cb src/grounders/fluxplayer.lisp --- a/src/grounders/fluxplayer.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/grounders/fluxplayer.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.grounders.fluxplayer) +(in-package :scully.grounders.fluxplayer) ;;;; Data --------------------------------------------------------------------- diff -r 80c4579fefce -r 67daea4e67cb src/grounders/prolog.lisp --- a/src/grounders/prolog.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/grounders/prolog.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.grounders.prolog) +(in-package :scully.grounders.prolog) ;;;; Utils diff -r 80c4579fefce -r 67daea4e67cb src/players/random-ii.lisp --- a/src/players/random-ii.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/players/random-ii.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.players.random-ii) +(in-package :scully.players.random-ii) ;;;; Random Incomplete-Information Player ------------------------------------- diff -r 80c4579fefce -r 67daea4e67cb src/players/random.lisp --- a/src/players/random.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/players/random.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.players.random) +(in-package :scully.players.random) ;;;; Random Player ------------------------------------------------------------ diff -r 80c4579fefce -r 67daea4e67cb src/reasoners/prolog.lisp --- a/src/reasoners/prolog.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/reasoners/prolog.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.reasoners.prolog) +(in-package :scully.reasoners.prolog) ;;;; Brute-Force Prolog Reasoner diff -r 80c4579fefce -r 67daea4e67cb src/rule-trees.lisp --- a/src/rule-trees.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/rule-trees.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,4 +1,4 @@ -(in-package #:scully.rule-trees) +(in-package :scully.rule-trees) (adt:defdata rule-tree diff -r 80c4579fefce -r 67daea4e67cb src/zdd.lisp --- a/src/zdd.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/src/zdd.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -1,1 +1,1 @@ -(in-package #:scully.zdd) +(in-package :scully.zdd) diff -r 80c4579fefce -r 67daea4e67cb vendor/quickutils-package.lisp --- a/vendor/quickutils-package.lisp Thu Oct 27 14:16:07 2016 +0000 +++ b/vendor/quickutils-package.lisp Thu Oct 27 14:18:14 2016 +0000 @@ -2,7 +2,7 @@ (unless (find-package "SCULLY.QUICKUTILS") (defpackage "SCULLY.QUICKUTILS" (:documentation "Package that contains Quickutil utility functions.") - (:use #:cl)))) + (:use :cl)))) (in-package "SCULLY.QUICKUTILS")