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

In iterate extensions, use check-type and shorter clause names

Use check-type in iterate extensions rather than a typecase; this
shortens the code.  Clause names shortened to matrix-element,
vector-element, etc.
parent 68c32feb
No related branches found
No related tags found
No related merge requests found
;; Iterate ;; Iterate
;; Norman Werner 2009-05-26 22:23:40EDT iterate.lisp ;; Norman Werner 2009-05-26 22:23:40EDT iterate.lisp
;; Time-stamp: <2009-05-30 21:40:26EDT iterate.lisp> ;; Time-stamp: <2009-06-03 23:22:29EDT iterate.lisp>
(in-package :iter) (in-package :iter)
#| #|
As an example try: As an example try:
(setf m1 (gsll:make-marray 'double-float (defparameter m1 #m((1 2 3) (0 6 8)))
:initial-contents '((1 2 3) (0 6 8))))
(iterate:iterate (iterate:for e ELEMENT-IN-GSLL-MATRIX m1) (iter:iter (iter:for e :matrix-element m1) (format t "~A " e))
(format t "~A " e))
(iterate:iterate (iterate:for (row column) INDEXES-IN-GSLL-MATRIX m1) (iter:iter (iter:for (row column) :matrix-element-index m1)
(format t "~A " (gsll:maref m1 row column))) (format t "~A " (gsll:maref m1 row column)))
|# |#
(defclause-sequence :ROW-IN-GSLL-MATRIX (defclause-sequence matrix-row matrix-row-index
:ROW-INDEX-OF-GSLL-MATRIX
:access-fn :access-fn
(lambda (marray index) (lambda (marray index)
(typecase marray (check-type marray gsl:matrix)
(gsll::matrix (gsll:row marray index)) (gsll:row marray index))
(gsll::mvector
(error "iterating over the rows in a vector is not supported.~
You may want iterate over its elements instead"))
(t (error "only iterating over rows of an gsll:matrix is supported"))))
:size-fn :size-fn
(lambda (marray) (lambda (marray)
(typecase marray (check-type marray gsl:matrix)
(gsll::matrix (elt (gsll:dimensions marray) 0)) (gsll:dim0 marray))
(gsll::vector (error "iterating over the rows in a vector is not ~
supported. You may want iterate over its elements instead"))
(t (error "only iterating over rows of an gsll:matrix is supported"))))
:element-type t :sequence-type t :element-type t :sequence-type t
:element-doc-string "(copied) rows of a gsll matrix" :element-doc-string "(copied) rows of a matrix"
:index-doc-string "index of the rows in a gsll matrix") :index-doc-string "index of the rows in a matrix")
(defclause-sequence column-in-gsll-matrix (defclause-sequence matrix-column matrix-column-index
column-index-of-gsll-matrix
:access-fn :access-fn
(lambda (marray index) (lambda (marray index)
(typecase marray (check-type marray gsl:matrix)
(gsll::matrix (gsll:column marray index)) (gsll:column marray index))
(gsll::vector
(error "iterating over the columns in a vector is not
supported. You may want iterate over its elements instead"))
(t (error "only iterating over columns of an gsll:matrix is supported"))))
:size-fn :size-fn
(lambda (marray) (lambda (marray)
(typecase marray (check-type marray gsl:matrix)
(gsll::matrix (elt (gsll:dimensions marray) 1)) (gsll:dim1 marray))
(gsll::vector
(error "iterating over the columns in a vector is not
supported. You may want iterate over its elements instead"))
(t (error "only iterating over columns of an gsll:matrix is
supported"))))
:element-type t :sequence-type t :element-type t :sequence-type t
:element-doc-string "(copied) columns of a gsll matrix" :element-doc-string "(copied) columns of a matrix"
:index-doc-string "index of the columns in a gsll matrix") :index-doc-string "index of the columns in a matrix")
(defclause-sequence element-in-gsll-vector (defclause-sequence vector-element vector-element-index
index-of-gsll-vector :access-fn
:access-fn (lambda (vector index) (lambda (vector index)
(typecase vector (check-type vector gsl:mvector)
(gsll::mvector (gsll:maref vector index)) (gsll:maref vector index))
(t (error "only iterating over elements of an gsll:vector is supported")))) :size-fn
:size-fn (lambda (vector) (lambda (vector)
(typecase vector (check-type vector gsl:mvector)
(gsll::mvector (elt (gsll:dimensions vector) 0)) (gsll:dim0 vector))
(t (error :element-type t :sequence-type t
"only iterating over elements of an gsll:vector is supported")))) :element-doc-string "(copied) elements of a vector"
:element-type t :sequence-type t :index-doc-string "index of elements in a vector")
:element-doc-string "(copied) elements of a gsll vector"
:index-doc-string "index of elements in a gsll vector")
(defmacro-driver (FOR element :ELEMENT-IN-GSLL-MATRIX (defmacro-driver (FOR element matrix-element matrix)
matrix) "Iterates over all (copied) elements in matrix"
"Iterates over all (copied) Elements in matrix"
(let ((row-index (gensym "row-index")) (let ((row-index (gensym "row-index"))
(col-index (gensym "col-index")) (col-index (gensym "col-index"))
(row-size (gensym "row-size")) (row-size (gensym "row-size"))
(col-size (gensym "col-size")) (col-size (gensym "col-size"))
(m (gensym "m"))) (m (gensym "m")))
(when :generate (when generate
(error "not yet implemented a generate clause for ELEMENT-IN-GSLL-MATRIX")) (error "Not yet implemented a generate clause for matrix-element."))
`(progn `(progn
(with ,m = ,matrix) (with ,m = ,matrix)
(with ,row-index = 0) (with ,row-index = 0)
(with ,col-index = 0) (with ,col-index = 0)
(with ,row-size = (elt (gsll:dimensions ,m) 0)) (with ,row-size = (gsll:dim0 ,m))
(with ,col-size = (elt (gsll:dimensions ,m) 1)) (with ,col-size = (gsll:dim1 ,m))
(:for ,element (for ,element
:next :next
(if (>= ,row-index ,row-size) (if (>= ,row-index ,row-size)
(:terminate) (terminate)
(if (>= ,col-index ,col-size) (if (>= ,col-index ,col-size)
(progn (progn
(setf ,col-index 0) (setf ,col-index 0)
(incf ,row-index) (incf ,row-index)
(if (>= ,row-index ,row-size) (if (>= ,row-index ,row-size)
(:terminate) (terminate)
(gsll:maref ,m ,row-index ,col-index))) (gsll:maref ,m ,row-index ,col-index)))
(prog1 (prog1
(gsll:maref ,m ,row-index ,col-index) (gsll:maref ,m ,row-index ,col-index)
(incf ,col-index)))))))) (incf ,col-index))))))))
(defmacro-driver (FOR indexes :INDEXES-IN-GSLL-MATRIX (defmacro-driver (FOR indexes matrix-element-index
matrix) matrix)
"Iterates over the indexes in matrix. indexes is a list like (row-index-name "Iterates over the indexes in matrix. indexes is a list like (row-index-name
column-index-name) " column-index-name) "
...@@ -116,14 +93,14 @@ As an example try: ...@@ -116,14 +93,14 @@ As an example try:
(row-size (gensym "row-size")) (row-size (gensym "row-size"))
(col-size (gensym "col-size")) (col-size (gensym "col-size"))
(m (gensym "m"))) (m (gensym "m")))
(when :generate (when generate
(error "not yet implemented a generate clause for INDEXES-IN-GSLL-MATRIX")) (error "Not yet implemented a generate clause for matrix-element-index."))
`(progn `(progn
(with ,m = ,matrix) (with ,m = ,matrix)
(with ,row-index = 0) (with ,row-index = 0)
(with ,col-index = 0) (with ,col-index = 0)
(with ,row-size = (elt (gsll:dimensions ,m) 0)) (with ,row-size = (gsll:dim0 ,m))
(with ,col-size = (elt (gsll:dimensions ,m) 1)) (with ,col-size = (gsll:dim1 ,m))
(for ,indexes next (if (>= ,row-index ,row-size) (for ,indexes next (if (>= ,row-index ,row-size)
(terminate) (terminate)
(if (>= ,col-index ,col-size) (if (>= ,col-index ,col-size)
......
;; Matrices ;; Matrices
;; Liam Healy 2008-04-15 21:57:52EDT matrix.lisp ;; Liam Healy 2008-04-15 21:57:52EDT matrix.lisp
;; Time-stamp: <2009-03-20 17:20:57EDT matrix.lisp> ;; Time-stamp: <2009-06-02 22:51:24EDT matrix.lisp>
;; $Id$ ;; $Id$
(in-package :gsl) (in-package :gsl)
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
;;;; Matrix structure and CL object ;;;; Matrix structure and CL object
;;;;**************************************************************************** ;;;;****************************************************************************
(export 'matrix)
(defclass matrix (marray) (defclass matrix (marray)
() ()
(:documentation "GSL matrices.")) (:documentation "GSL matrices."))
......
;; Vectors ;; Vectors
;; Liam Healy 2008-04-13 09:39:02EDT vector.lisp ;; Liam Healy 2008-04-13 09:39:02EDT vector.lisp
;; Time-stamp: <2009-03-20 17:20:40EDT vector.lisp> ;; Time-stamp: <2009-06-02 22:51:23EDT vector.lisp>
;; $Id$ ;; $Id$
(in-package :gsl) (in-package :gsl)
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
;;;; Vector structure, CL object, and allocation ;;;; Vector structure, CL object, and allocation
;;;;**************************************************************************** ;;;;****************************************************************************
(export 'mvector)
(defclass mvector (marray) (defclass mvector (marray)
() ()
(:documentation "GSL vectors.")) (:documentation "GSL vectors."))
......
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