From d8fd822a672eae490ebfa3c7b9f0bb4ccc0b133f Mon Sep 17 00:00:00 2001 From: Liam Healy <liam@thinkpad.local> Date: Mon, 12 Jan 2009 22:55:54 -0500 Subject: [PATCH] Eliminated style warnings in SBCL Removed declaration of 'indexed-functions as ignorable in #'with-defmfun-key-args, which now lets SBCL compile with no warnings of any kind. Superficial attempt at modernizing simulated-annealing so that it compiles, but it still fails. --- documentation/missing-features.text | 8 +++++++- init/defmfun.lisp | 4 ++-- simulated-annealing.lisp | 8 ++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/documentation/missing-features.text b/documentation/missing-features.text index 420f5014..dc9c92be 100644 --- a/documentation/missing-features.text +++ b/documentation/missing-features.text @@ -6,7 +6,6 @@ All file input and output (fread, fwrite) functions. All submatrix functions and views. Stride is always set to 1 in GSL functions that take a stride. - Some things that have been added to GSL since 1.8 that should be added to GSLL: @@ -55,3 +54,10 @@ http://lists.gnu.org/archive/html/info-gsl/2008-12/msg00001.html ** Added missing functions gsl_vector_complex_{isnonneg,add,sub,mul, div,scale,add_constant} and gsl_matrix_complex_float_isnonneg [bug #22478] + +******************* +Wishlist +Be able to set the real and imaginary parts of an array to a real +array. + + diff --git a/init/defmfun.lisp b/init/defmfun.lisp index 11901874..11b5698e 100644 --- a/init/defmfun.lisp +++ b/init/defmfun.lisp @@ -1,6 +1,6 @@ ;; Macro for defining GSL functions. ;; Liam Healy 2008-04-16 20:49:50EDT defmfun.lisp -;; Time-stamp: <2009-01-10 21:47:36EST defmfun.lisp> +;; Time-stamp: <2009-01-12 21:50:07EST defmfun.lisp> ;; $Id$ (in-package :gsl) @@ -79,7 +79,7 @@ (declare (ignorable c-return return definition element-types index export documentation inputs outputs before after enumeration qualifier - gsl-version switch indexed-functions) + gsl-version switch) (special indexed-functions)) ,@body)) diff --git a/simulated-annealing.lisp b/simulated-annealing.lisp index e3ee4406..15308cd6 100644 --- a/simulated-annealing.lisp +++ b/simulated-annealing.lisp @@ -1,6 +1,6 @@ ;; Simulated Annealing ;; Liam Healy Sun Feb 11 2007 - 17:23 -;; Time-stamp: <2008-12-26 19:51:20EST simulated-annealing.lisp> +;; Time-stamp: <2009-01-12 22:48:38EST simulated-annealing.lisp> ;; $Id$ (in-package :gsl) @@ -69,7 +69,7 @@ ;;((cffi:get-callback copy-function) :pointer) ;;((cffi:get-callback copy-constructor) :pointer) ;;((cffi:get-callback destructor) :pointer) - (element-size size) (parameters simulated-annealing-parameters)) + (element-size sizet) (parameters simulated-annealing-parameters)) :c-return :void :documentation ; FDL "Perform a simulated annealing search through a given @@ -110,7 +110,7 @@ (defmacro def-step-function (name) "Define a step fuction for simulated annealing." - (let ((mpointer (gensym "GEN")) + (let ((generator (gensym "GEN")) (arguments (gensym "ARGS")) (step-size (gensym "SS"))) `(cffi:defcallback ,name :void @@ -181,7 +181,7 @@ (with-simulated-annealing-parameters (params 200 10 10.0d0 1.0d0 0.002d0 1.005d0 2.0d-6) (simulated-annealing - (make-random-number-generator) initial + (make-random-number-generator *mt19937* 0) initial 'E2 'S2 'M2 'P2 (cffi:foreign-type-size :double) params))))) -- GitLab