From 1db61a852ce19697a529445b92d0e6ad6d0fa5f4 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Sun, 9 Mar 2008 14:54:07 +0100 Subject: [PATCH] attempt to fix var def missing issues. --- compound.lsp | 1 + optimize.lisp | 2 ++ regression.lsp | 1 + 3 files changed, 4 insertions(+) diff --git a/compound.lsp b/compound.lsp index e9c7d26..d3ba9f1 100644 --- a/compound.lsp +++ b/compound.lsp @@ -235,6 +235,7 @@ Returns sequence of the elements of compound item X." ;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +(defvar *compound-data-proto*) (defproto *compound-data-proto*) ;;; FIXME: These need to be defined!! diff --git a/optimize.lisp b/optimize.lisp index b9fab44..d7c9c9e 100644 --- a/optimize.lisp +++ b/optimize.lisp @@ -194,6 +194,7 @@ ;;;; Mode Info Prototype ;;;; +(defvar minfo-proto) (defproto minfo-proto '(internals)) #+xlisp (send minfo-proto :add-method :isnew #'|minfo-isnew|) @@ -392,6 +393,7 @@ control the behavior of simplex algorithm." ;;; Simplex Prototype ;;; +(defvar simplex-proto) (defproto simplex-proto '(f simplex)) ;;; diff --git a/regression.lsp b/regression.lsp index 781fc6d..9ae0b80 100644 --- a/regression.lsp +++ b/regression.lsp @@ -45,6 +45,7 @@ ;;; Regresion Model Prototype +(defvar regression-model-proto) (defproto regression-model-proto '(x y intercept sweep-matrix basis weights included -- 2.11.4.GIT