[lisplab-cvs] r207 - in trunk: . src/util
jivestgarden at common-lisp.net
jivestgarden at common-lisp.net
Sun Oct 9 15:06:36 UTC 2011
Author: jivestgarden
Date: Sun Oct 9 08:06:36 2011
New Revision: 207
Log:
changed util dep
Modified:
trunk/lisplab.asd
trunk/src/util/level0-basic.lisp
trunk/src/util/store-ordinary-functions.lisp
Modified: trunk/lisplab.asd
==============================================================================
--- trunk/lisplab.asd Sun Oct 9 07:12:51 2011 (r206)
+++ trunk/lisplab.asd Sun Oct 9 08:06:36 2011 (r207)
@@ -44,6 +44,7 @@
:serial t
:components
(
+
(:file "package")
(:file "version")
@@ -75,7 +76,7 @@
))
(:module :src/vector1
- :depends-on (:src/core :src/util)
+ :depends-on (:src/core)
:serial t
:components
((:file "level1-interface")
@@ -83,7 +84,7 @@
))
(:module :src/matrix1
- :depends-on (:src/core :src/vector1 :src/util)
+ :depends-on (:src/core :src/vector1)
:serial t
:components
((:file "level1-classes")
@@ -102,7 +103,7 @@
))
(:module :src/vector2
- :depends-on (:src/core :src/vector1 :src/util)
+ :depends-on (:src/core :src/vector1)
:serial t
:components
((:file "vector2-interface")
@@ -122,7 +123,7 @@
(:module :src/matrix2
- :depends-on (:src/core :src/vector1 :src/matrix1 :src/util)
+ :depends-on (:src/core :src/vector1 :src/matrix1)
:serial t
:components
((:file "matrix2-interface")
@@ -148,7 +149,7 @@
;; Linear algebra lisp implementation (Level 3)
;;
(:module :src/linalg
- :depends-on (:src/matrix2 :src/util)
+ :depends-on (:src/matrix2)
:serial t
:components
((:file "level3-linalg-interface")
@@ -159,7 +160,7 @@
;; Fast Fourier transform (Level 3)
;;
(:module :src/fft
- :depends-on (:src/matrix2 :src/util)
+ :depends-on (:src/matrix2)
:serial t
:components
(
Modified: trunk/src/util/level0-basic.lisp
==============================================================================
--- trunk/src/util/level0-basic.lisp Sun Oct 9 07:12:51 2011 (r206)
+++ trunk/src/util/level0-basic.lisp Sun Oct 9 08:06:36 2011 (r207)
@@ -17,8 +17,6 @@
;;; with this program; if not, write to the Free Software Foundation, Inc.,
;;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-;; TODO clean up. Here's a lot of unused stuff
-
(in-package :lisplab)
;; Here non ansi stuff.
Modified: trunk/src/util/store-ordinary-functions.lisp
==============================================================================
--- trunk/src/util/store-ordinary-functions.lisp Sun Oct 9 07:12:51 2011 (r206)
+++ trunk/src/util/store-ordinary-functions.lisp Sun Oct 9 08:06:36 2011 (r207)
@@ -34,7 +34,6 @@
;;; Generate more real-to-real functions. With some kind of input these will
;;; fail and give complex output but for speed it can be ok to have them
-
(in-package :lisplab)
;;; Now the ordinary functions
More information about the lisplab-cvs
mailing list