Add mathjax for dgesv
[maxima.git] / share / odepack / load-odepack.lisp
blob8c1929389fa685c7313d43b86ae6f09bb07dc5ca
1 (in-package #:maxima)
3 #+nil
4 (progn
5 (format t "path = ~A~%" (combine-path *maxima-sharedir* "lapack"))
6 (format t "*load-truename* = ~A~%" *load-truename*) (format t "sys =
7 ~A~%" (merge-pathnames (make-pathname :name "lapack" :type "system")
8 *load-truename*)))
10 #+(or ecl abcl) ($load "lisp-utils/defsystem.lisp")
12 (let ((path (merge-pathnames (make-pathname :name "odepack" :type "system")
13 *load-pathname*)))
14 (format t "path = ~S~%" path) (load path))
16 ;; Maxima errored out when any lapack function was used which
17 ;; most certainly was an ECL bug: Seems like the definition of the
18 ;; MAXIMA package shadows the array symbol from the COMMON-LISP package.
19 ;; Bugfix by Marius Gerbershagen:
20 #+ecl (in-package #:common-lisp)
21 (mk:oos "maxima-odepack" :compile)