r3215: *** empty log message ***
[reversi.git] / package.lisp
1 ;;;;***************************************************************************
2 ;;;;
3 ;;;; FILE IDENTIFICATION
4 ;;;; 
5 ;;;;  Name:           package.lisp
6 ;;;;  Purpose:        Package definition for reversi
7 ;;;;  Programer:      Kevin M. Rosenberg
8 ;;;;  Date Started:   1 Nov 2001
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.3 2002/10/25 13:09:11 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg 
13 ;;;;
14 ;;;; Reversi users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;;***************************************************************************
18
19
20 (in-package #:cl-user)
21
22 (defpackage #:reversi
23   (:use #:common-lisp #:common-lisp-user 
24         #+clisp #:ext
25         #+clim #:clim
26         #+clim #:clim-sys)
27   #+clim
28   (:shadowing-import-from :clim :pathname)
29   #+clim
30   (:shadowing-import-from :clim :interactive-stream-p)
31   #+clim
32   (:shadowing-import-from :clim :boolean)
33   
34   (:export
35    #:reversi
36    #:random-reversi-series
37    #:round-robin
38    #:reversi-series
39    #:human
40    #:iago
41    #:alpha-beta-searcher
42    #:alpha-beta-searcher2
43    #:alpha-beta-searcher3
44    #:count-difference
45    #:weighted-squares
46    #:modified-weighted-squares
47
48    #:text-reversi
49    #+clim #:gui-reversi
50 ))
51