[lisplab-cvs] r86 - src/core
Jørn Inge Vestgården
jivestgarden at common-lisp.net
Tue Aug 18 13:21:23 UTC 2009
Author: jivestgarden
Date: Tue Aug 18 09:21:22 2009
New Revision: 86
Log:
bugfix
Modified:
package.lisp
src/core/level0-interface.lisp
Modified: package.lisp
==============================================================================
--- package.lisp (original)
+++ package.lisp Tue Aug 18 09:21:22 2009
@@ -46,6 +46,10 @@
Lisplab provides high level interfaces to BLAS, LAPACK and FFTW.")
(:export
+ ;; Utilities
+ "IN-DIR"
+ "STRCAT"
+
;; Numerical constants
"%I"
"%E"
Modified: src/core/level0-interface.lisp
==============================================================================
--- src/core/level0-interface.lisp (original)
+++ src/core/level0-interface.lisp Tue Aug 18 09:21:22 2009
@@ -41,7 +41,6 @@
(.asin . asin) (.acos . acos) (.atan . atan)
(.sinh . sinh) (.cosh . cosh) (.tanh . tanh)
(.asinh . asinh) (.acosh . acosh) (.atanh . atanh)
- (.realpart . realpart) (.imagpart . imagpart) (.abs . abs)
(.exp . exp) (.sqr . .sqr) (.sqrt . sqrt) (.conj . conjugate)
(.erf . .erf) (.erfc . .erfc)
(.gamma . .gamma))
@@ -52,6 +51,7 @@
(.asin . asin) (.acos . acos) (.atan . atan)
(.sinh . sinh) (.cosh . cosh) (.tanh . tanh)
(.asinh . asinh) (.acosh . acosh) (.atanh . atanh)
+ (.realpart . realpart) (.imagpart . imagpart) (.abs . abs)
(.exp . exp) (.sqrt . sqrt) (.conj . conjugate))
"Functions with a twin in the Common Lisp package.")
More information about the lisplab-cvs
mailing list