fixes typos and a missing reference.
[maxima.git] / share / linearalgebra / load-linearalgebra-lisp-files.lisp
blob5bc54b4176665f687c47f62f9ca6b2a56f27939a
1 ;; Load all Lisp files within WITH-COMPILATION-UNIT macro.
2 ;; This quiets the undefined function warnings from SBCL
3 ;; which are otherwise very voluminous (and this construct
4 ;; is accepted by other CL implementations).
6 #+gcl (unless (macro-function 'with-compilation-unit)
7 (defmacro with-compilation-unit (a &rest b) `(progn ,@b)))
9 (with-compilation-unit nil
10 ($load "mring")
11 ($load "lu")
12 ($load "linalgcholesky")
13 ($load "eigens-by-jacobi")
14 ($load "linalg-extra")
15 ($load "matrixexp")
16 ($load "linalg-utilities"))