Skip to content
Snippets Groups Projects
Commit 135620f7 authored by Liam Healy's avatar Liam Healy
Browse files

Sorting tests, definitions for matrices

Define some sorting functions for matrices, using the gsl_sort
functions that work on C pointers.  Define sorting tests for all
element types.  Update documentation to clarify lack of stride option.
parent 370307e4
No related branches found
No related tags found
No related merge requests found
...@@ -167,9 +167,9 @@ GSL doesn't have them. ...@@ -167,9 +167,9 @@ GSL doesn't have them.
<base href="http://www.gnu.org/software/gsl/manual/html_node/"> <base href="http://www.gnu.org/software/gsl/manual/html_node/">
<li>Reading and writing through the GSL library is not supported due <li>Reading and writing through the GSL library is not supported due
to lack of support for foreign streams in Lisp.</li> to lack of support for foreign streams in Lisp.</li>
<li>For <a href="Vectors-and-Matrices.html">Vectors and Matrices</a>, <li>For <a href="Vectors-and-Matrices.html">Vectors and
subvectors and views are not defined. In many functions, the Matrices</a>, subvectors and views are not defined. For GSL
stride is pre-set to 1. functions that take a stride, it is pre-set to 1 in GSLL.
<li><a href="BLAS-Support.html">BLAS</a> is completed, but with only very <li><a href="BLAS-Support.html">BLAS</a> is completed, but with only very
limited testing. limited testing.
<li><a href="Fast-Fourier-Transforms.html">FFTs</a> have not been done <li><a href="Fast-Fourier-Transforms.html">FFTs</a> have not been done
...@@ -203,7 +203,7 @@ gamma-randist, negative-binomial. ...@@ -203,7 +203,7 @@ gamma-randist, negative-binomial.
<address><a href="mailto:gsll-devel@common-lisp.net">Liam Healy</a></address> <address><a href="mailto:gsll-devel@common-lisp.net">Liam Healy</a></address>
<!-- hhmts start --> <!-- hhmts start -->
<small> <small>
Time-stamp: <2008-11-08 14:14:02EST documentation.html> Time-stamp: <2008-11-09 12:29:17EST documentation.html>
</small> </small>
<!-- hhmts end --> <!-- hhmts end -->
</div> </div>
......
;; Sorting ;; Sorting
;; Liam Healy, Fri Apr 14 2006 - 20:20 ;; Liam Healy, Fri Apr 14 2006 - 20:20
;; Time-stamp: <2008-10-25 12:00:37EDT sorting.lisp> ;; Time-stamp: <2008-11-09 13:10:16EST sorting.lisp>
;; $Id$ ;; $Id$
(in-package :gsl) (in-package :gsl)
;;; #'heapsort has just a cursory port, use CL's #'sort. ;;; #'heapsort has just a cursory port, use CL's #'sort.
;;; Raw C array functions not ported, not policy.
;;;;**************************************************************************** ;;;;****************************************************************************
;;;; Heapsort, not recommended ;;;; Heapsort, not recommended
...@@ -49,19 +48,19 @@ ...@@ -49,19 +48,19 @@
;;; The GSL vector sorting routines come in two forms, those that sort ;;; The GSL vector sorting routines come in two forms, those that sort
;;; on GSL vectors (with "vector" in the name), and those that sort on ;;; on GSL vectors (with "vector" in the name), and those that sort on
;;; C arrays. From the point of view of GSLL, it makes little sense ;;; C arrays. The former can sort vectors, the latter can both
;;; to have both, since we can always use the C form, and if we don't ;;; vectors and matrices. The functions #'sort-index,
;;; need the GSL vector, it won't be constructed. However, it is ;;; #'sort-smallest-index, #'sort-largest-index could be made to work
;;; trivial to make both forms, so they are both defined here. ;;; on matrices, but the indexing would have to be worked out
;;; correctly.
;;; It ought to be possible to provide a stride argument, but this ;;; It ought to be possible to provide a stride argument, but this
;;; gives an error: ;;; gives an error:
;;;(defmfun msort ((v vector) &optional (stride 1)) ;;;(defmfun msort ((v vector) &optional (stride 1))
(defmfun msort ((v both))
(defmfun msort ((v vector))
("gsl_sort" :type) ("gsl_sort" :type)
(((c-pointer v) :pointer) (1 sizet) ((dim0 v) sizet)) (((c-pointer v) :pointer) (1 sizet) ((total-size v) sizet))
:definition :generic :definition :generic
:element-types :no-complex :element-types :no-complex
:c-return :void :c-return :void
...@@ -132,10 +131,12 @@ ...@@ -132,10 +131,12 @@
"Find the smallest elements of the vector v and put them into dest, "Find the smallest elements of the vector v and put them into dest,
which must be shorter than v.") which must be shorter than v.")
(defmfun sort-smallest (dest (v vector)) (defmfun sort-smallest (dest (v both))
("gsl_sort" :type "_smallest") ("gsl_sort" :type "_smallest")
(((c-pointer dest) :pointer) ((dim0 dest) sizet) (((c-pointer dest) :pointer) ((total-size dest) sizet)
((c-pointer v) :pointer)) ((c-pointer v) :pointer)
(1 sizet) ; stride, set to 1 for now
((total-size v) sizet))
:definition :generic :definition :generic
:element-types :no-complex :element-types :no-complex
:c-return :void :c-return :void
...@@ -191,10 +192,12 @@ ...@@ -191,10 +192,12 @@
"Find the largest elements of the vector v and put them into dest, "Find the largest elements of the vector v and put them into dest,
which must be shorter than v.") which must be shorter than v.")
(defmfun sort-largest (dest (v vector)) (defmfun sort-largest (dest (v both))
("gsl_sort" :type "_largest") ("gsl_sort" :type "_largest")
(((c-pointer dest) :pointer) ((dim0 dest) sizet) (((c-pointer dest) :pointer) ((total-size dest) sizet)
((c-pointer v) :pointer)) ((c-pointer v) :pointer)
(1 sizet) ; stride, set to 1 for now
((total-size v) sizet))
:definition :generic :definition :generic
:element-types :no-complex :element-types :no-complex
:c-return :void :c-return :void
...@@ -243,29 +246,47 @@ ...@@ -243,29 +246,47 @@
;;;; Examples and unit test ;;;; Examples and unit test
;;;;**************************************************************************** ;;;;****************************************************************************
(save-test sorting (generate-all-array-tests sort-vector :no-complex
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (letm ((v1 (array-default 8)))
(sort-vector vec) ;; or you can use msort
(cl-array vec)) (sort-vector v1)))
(letm ((perm (permutation 5))
(vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (generate-all-array-tests sort-matrix :no-complex
(sort-vector-index perm vec) (letm ((m1 (array-default '(3 3))))
(cl-array perm)) (msort m1)))
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))
(smallest (vector-double-float 3))) (generate-all-array-tests sort-vector-index :no-complex
(sort-vector-smallest smallest vec) (letm ((perm (permutation 8))
(cl-array smallest)) (v1 (array-default 8)))
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (sort-vector-index perm v1)
(comb (combination '(5 3)))) (cl-array perm)))
(cl-array (sort-vector-smallest-index comb vec)))
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (generate-all-array-tests sort-vector-smallest :no-complex
(sm (combination '(5 3)))) (letm ((v1 (array-default 8))
(cl-array (sort-smallest-index sm vec))) (v2 (array-default 3)))
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (cl-array (sort-vector-smallest v2 v1))))
(largest (vector-double-float 3)))
(sort-vector-largest largest vec) (generate-all-array-tests sort-matrix-smallest :no-complex
(cl-array largest)) (letm ((m1 (array-default '(3 3)))
(letm ((vec (vector-double-float (a 7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (m2 (array-default '(2 3) t)))
(comb (combination '(5 3)))) (cl-array (sort-smallest m2 m1))))
(cl-array (sort-vector-largest-index comb vec))))
(generate-all-array-tests sort-vector-smallest-index :no-complex
(letm ((comb (combination '(8 3)))
(v1 (array-default 8)))
(cl-array (sort-vector-smallest-index comb v1))))
(generate-all-array-tests sort-vector-largest :no-complex
(letm ((v1 (array-default 8))
(v2 (array-default 3)))
(cl-array (sort-vector-largest v2 v1))))
(generate-all-array-tests sort-matrix-largest :no-complex
(letm ((m1 (array-default '(3 3)))
(m2 (array-default '(2 3) t)))
(cl-array (sort-largest m2 m1))))
(generate-all-array-tests sort-vector-largest-index :no-complex
(letm ((comb (combination '(8 3)))
(v1 (array-default 8)))
(cl-array (sort-vector-largest-index comb v1))))
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