Skip to content
Snippets Groups Projects
Commit f7103228 authored by Liam M. Healy's avatar Liam M. Healy
Browse files

Fix argument type for LU-sgndet

parent ff773911
No related branches found
No related tags found
No related merge requests found
;; LU decomposition
;; Liam Healy, Thu Apr 27 2006 - 12:42
;; Time-stamp: <2010-02-05 09:15:11EST lu.lisp>
;; Time-stamp: <2010-02-05 09:39:38EST lu.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009 Liam M. Healy
;; Distributed under the terms of the GNU General Public License
......@@ -139,7 +139,7 @@
(defmfun LU-sgndet ((LU matrix) signum)
("gsl_linalg" :complex "_LU_sgndet")
(((mpointer LU) :pointer) (signum (:pointer :int)))
(((mpointer LU) :pointer) (signum :int))
:definition :generic
:inputs (LU)
:element-types :doubles
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment