diff --git a/data/array-tests.lisp b/data/array-tests.lisp index d13a65a99f5b4df29fc64850efe2a79e6eefc5a6..0baa88d36bffbab8380a8ff5e44d0148d294c97b 100644 --- a/data/array-tests.lisp +++ b/data/array-tests.lisp @@ -1,6 +1,6 @@ ;; Tests of array functions ;; Liam Healy 2008-10-20 22:41:48EDT array-tests.lisp -;; Time-stamp: <2008-11-08 22:27:39EST array-tests.lisp> +;; Time-stamp: <2008-11-16 10:28:21EST array-tests.lisp> ;; $Id: $ ;;; Generate each file with #'write-test-to-file, e.g. @@ -113,27 +113,21 @@ (m2 (array-default '(3 3)))) (cl-array (m/ m1 m2)))) -#| Temporarily commented out due to GSL bug (generate-all-array-tests vector-mult-scalar :no-complex - (letm ((v1 (array-default 3)) - (scalar (scalar-default))) - (cl-array (m*c v1 scalar)))) + (letm ((v1 (array-default 3))) + (cl-array (m*c v1 1.39d0)))) (generate-all-array-tests matrix-mult-scalar :no-complex - (letm ((m1 (array-default '(3 3))) - (scalar (scalar-default))) - (cl-array (m*c m1 scalar)))) + (letm ((m1 (array-default '(3 3)))) + (cl-array (m*c m1 1.39d0)))) (generate-all-array-tests vector-add-scalar :no-complex - (letm ((v1 (array-default 3)) - (scalar (scalar-default))) - (cl-array (m+c v1 scalar)))) + (letm ((v1 (array-default 3))) + (cl-array (m+c v1 18.19d0)))) (generate-all-array-tests matrix-add-scalar :no-complex - (letm ((m1 (array-default '(3 3))) - (scalar (scalar-default))) - (cl-array (m+c m1 scalar)))) -|# + (letm ((m1 (array-default '(3 3)))) + (cl-array (m+c m1 18.19d0)))) ;;;;**************************************************************************** ;;;; Maximum and minimum elements @@ -215,7 +209,7 @@ (generate-all-array-tests set-identity t (letm ((m1 (array-default '(3 3)))) - (set-identity m1))) + (cl-array (set-identity m1)))) (generate-all-array-tests row t (letm ((m1 (array-default '(3 3))) diff --git a/data/both.lisp b/data/both.lisp index 1b6aa03c6be5c12b96f4104ba4126e954ed60fb1..a099d89d7f849f80f1400ecf9202d68b73f51d9f 100644 --- a/data/both.lisp +++ b/data/both.lisp @@ -1,6 +1,6 @@ ;; Functions for both vectors and matrices. ;; Liam Healy 2008-04-26 20:48:44EDT both.lisp -;; Time-stamp: <2008-11-08 17:23:47EST both.lisp> +;; Time-stamp: <2008-11-16 10:23:32EST both.lisp> ;; $Id$ (in-package :gsl) @@ -105,8 +105,6 @@ ;;; Errors in GSL: ;;; 1) complex operations in older versions of GSL ;;; https://savannah.gnu.org/bugs/index.php?22478 -;;; 2) Scalar operation m*c, m+c require a double -;;; for the scalar. Reported 2008-11-08. (defmfun m+ ((a both) (b both)) ("gsl_" :category :type "_add") @@ -176,25 +174,25 @@ (defmfun m*c ((a both) x) ("gsl_" :category :type "_scale") - (((mpointer a) :pointer) (x :element-c-type)) + (((mpointer a) :pointer) (x :double)) :definition :generic :element-types :no-complex :inputs (a) :outputs (a) :return (a) :documentation ; FDL - "Multiply the elements of a by the constant factor x.") + "Multiply the elements of a by the scalar factor x.") (defmfun m+c ((a both) x) ("gsl_" :category :type "_add_constant") - (((mpointer a) :pointer) (x :element-c-type)) + (((mpointer a) :pointer) (x :double)) :definition :generic :element-types :no-complex :inputs (a) :outputs (a) :return (a) :documentation ; FDL - "Add the constant value x to the elements of the a.") + "Add the scalar double x to all the elements of array a.") ;;;;**************************************************************************** ;;;; Maximum and minimum elements