[funds-cvs] r60 - trunk/funds/src
abaine at common-lisp.net
abaine at common-lisp.net
Sun Jul 8 03:06:09 UTC 2007
Author: abaine
Date: Sat Jul 7 23:06:09 2007
New Revision: 60
Removed:
trunk/funds/src/funds-clos.asd
Modified:
trunk/funds/src/funds.asd
Log:
Changed system name from funds-clos to funds.
Modified: trunk/funds/src/funds.asd
==============================================================================
--- trunk/funds/src/funds.asd (original)
+++ trunk/funds/src/funds.asd Sat Jul 7 23:06:09 2007
@@ -1,20 +1,33 @@
-;;;; -*- Lisp -*-
+; -*- Lisp -*-
(in-package :cl-user)
-
-(defpackage #:funds-asd
+(defpackage #:funds-clos-asd
(:use :cl :asdf))
-(in-package :funds-asd)
+(in-package :funds-clos-asd)
-(defsystem funds
+(defsystem funds-clos
:serial t
:components ((:file "package")
+ (:file "stack")
(:module trees
:serial t
- :components ((:file "avl-tree")
- (:file "binary-tree")))
- (:module stack
- :serial t
- :components ((:file "stack")))))
+ :components ((:file "classes")
+ (:file "constructors")
+ (:file "bt")
+ (:file "avl")
+ (:file "tree-as-alist")
+ (:file "tree-empty-p")
+ (:file "tree-insert")
+ (:file "tree-remove")
+ (:file "tree-find")
+ (:file "tree-weight")
+ (:file "tree-height")
+ (:module heap
+ :serial t
+ :components ((:file "heap-empty-p")
+ (:file "heap-insert")
+ (:file "heap-remove")
+ (:file "heap-first")))))
+ (:file "queue")))
More information about the Funds-cvs
mailing list