From b580f0b70b26802a54470b6af3533f5d49611d42 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 27 Aug 2008 21:23:31 +0200 Subject: [PATCH] moved data handling/management/etc into own directory. --- lispstat.asd | 21 +++++++++++++-------- data-clos.lisp => src/data/data-clos.lisp | 0 data.lisp => src/data/data.lisp | 0 3 files changed, 13 insertions(+), 8 deletions(-) rename data-clos.lisp => src/data/data-clos.lisp (100%) rename data.lisp => src/data/data.lisp (100%) diff --git a/lispstat.asd b/lispstat.asd index 9b657eb..db5ad81 100644 --- a/lispstat.asd +++ b/lispstat.asd @@ -2,7 +2,7 @@ ;;; Copyright (c) 2005--2008, by AJ Rossini ;;; ASDF packaging for CommonLisp Stat ;;; License: BSD, see the top level directory file LICENSE for details. -;;; Time-stamp: <2008-08-27 18:51:23 tony> +;;; Time-stamp: <2008-08-27 21:16:50 tony> ;;; Created: <2005-05-30 17:09:47 blindglobe> ;; What package should we be in? Contaminating cl-user is probably EVIL. @@ -137,9 +137,14 @@ Last touched 1991, then in 2005--2008." "matrices" "ladata")))) - (:file "data" :depends-on ("proto-objects" - "lispstat-core" - "numerics-internal")) ;; "matrices" "linalg" + (:module "stat-data" + :pathname "src/data/" + :depends-on ("proto-objects" + "lispstat-core" + "numerics-internal") + :components + (;; (:file "data-clos") + (:file "data"))) ;; there is a circ reference which we need to solve. (:lispstat-lsp-source-file "lsbasics" @@ -150,9 +155,9 @@ Last touched 1991, then in 2005--2008." (:lispstat-lsp-source-file "statistics" :depends-on ("proto-objects" "lispstat-core" - "numerics-internal" - "lsbasics" - "data" )) + "numerics-internal" + "stat-data" + "lsbasics")) (:file "optimize" :depends-on ("proto-objects" "lispstat-core" @@ -180,7 +185,7 @@ Last touched 1991, then in 2005--2008." "lispstat-core" "numerics-internal" "lsbasics" - "data" + "stat-data" "statistics" "regression") :components ((:file "ls-user"))) diff --git a/data-clos.lisp b/src/data/data-clos.lisp similarity index 100% rename from data-clos.lisp rename to src/data/data-clos.lisp diff --git a/data.lisp b/src/data/data.lisp similarity index 100% rename from data.lisp rename to src/data/data.lisp -- 2.11.4.GIT