X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=base.lisp;h=ac4fb55d8d91c256bb3f2844913317f58fe390cb;hb=48b1a775e575a66bc154620107a8e27321ea306c;hp=10edbde0e34502bc7af0a95af0fe065d5d14f3b6;hpb=970bffc5f1e6a294659016aec57f17c822dee8cc;p=reversi.git diff --git a/base.lisp b/base.lisp index 10edbde..ac4fb55 100644 --- a/base.lisp +++ b/base.lisp @@ -8,7 +8,7 @@ ;;;; Programer: Kevin Rosenberg based on code by Peter Norvig ;;;; Date Started: 1 Nov 2001 ;;;; -;;;; $Id: base.lisp,v 1.2 2002/10/25 13:09:11 kevin Exp $ +;;;; $Id: base.lisp,v 1.3 2003/05/06 15:51:20 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg ;;;; and Copyright (c) 1998-2002 Peter Norvig @@ -18,9 +18,10 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;;*************************************************************************** -(in-package :reversi) -(declaim (optimize (safety 1) (debug 3) (speed 3) (compilation-speed 0))) +(in-package #:reversi) +(eval-when (:compile-toplevel) + (declaim (optimize (safety 1) (space 0) (speed 3) (compilation-speed 0)))) (defparameter +all-directions+ '(-11 -10 -9 -1 1 9 10 11)) (defconstant +default-max-minutes+ 30)