From 99b89e2a74feca073a64a5742fc552a4102995ca Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Sat, 3 Jan 2009 20:39:33 +0100 Subject: [PATCH] more lisp-matrix package changes (all need to be moved into packages). --- src/stat-models/bayes.lsp | 3 +++ src/stat-models/model-fit.lisp | 5 ++++- src/stat-models/model.lisp | 5 ++++- src/stat-models/nonlin.lsp | 3 +++ 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/stat-models/bayes.lsp b/src/stat-models/bayes.lsp index 1a34fec..1c86a70 100644 --- a/src/stat-models/bayes.lsp +++ b/src/stat-models/bayes.lsp @@ -12,11 +12,14 @@ (defpackage :lisp-stat-bayes (:use :common-lisp + :lisp-matrix :lisp-stat-object-system :lisp-stat-math :lisp-stat-basics +#| :lisp-stat-matrix :lisp-stat-linalg +|# ) (:shadowing-import-from :lisp-stat-object-system slot-value call-method call-next-method) diff --git a/src/stat-models/model-fit.lisp b/src/stat-models/model-fit.lisp index d0cc7fd..8ec3880 100644 --- a/src/stat-models/model-fit.lisp +++ b/src/stat-models/model-fit.lisp @@ -34,8 +34,11 @@ :lisp-stat-object-system :lisp-stat-types :lisp-stat-compound-data +#| :lisp-stat-matrix - :lisp-stat-linalg) + :lisp-stat-linalg +|# + ) (:shadowing-import-from :lisp-stat-object-system slot-value call-method call-next-method) (:export fit)) diff --git a/src/stat-models/model.lisp b/src/stat-models/model.lisp index 85e90c8..df52c40 100644 --- a/src/stat-models/model.lisp +++ b/src/stat-models/model.lisp @@ -30,8 +30,11 @@ :lisp-stat-object-system :lisp-stat-types :lisp-stat-compound-data +#| :lisp-stat-matrix - :lisp-stat-linalg) + :lisp-stat-linalg +|# + ) (:shadowing-import-from :lisp-stat-object-system slot-value call-method call-next-method) (:export model)) diff --git a/src/stat-models/nonlin.lsp b/src/stat-models/nonlin.lsp index cf34ed8..6c4d723 100644 --- a/src/stat-models/nonlin.lsp +++ b/src/stat-models/nonlin.lsp @@ -12,12 +12,15 @@ (defpackage :lisp-stat-regression-nonlin (:use :common-lisp + :lisp-matrix :lisp-stat-object-system :lisp-stat-math :lisp-stat-basics :lisp-stat-compound-data +#| :lisp-stat-matrix :lisp-stat-linalg +|# :lisp-stat-regression-linear) (:shadowing-import-from :lisp-stat-object-system slot-value call-method call-next-method) -- 2.11.4.GIT