I guess next-step should be exported
--- ordinary-differential-equations/ode-system.lisp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ordinary-differential-equations/ode-system.lisp b/ordinary-differential-equations/ode-system.lisp index 2e0490f..851b5ac 100644 --- a/ordinary-differential-equations/ode-system.lisp +++ b/ordinary-differential-equations/ode-system.lisp @@ -20,7 +20,7 @@
(in-package :gsl)
-(export '(with-ode-integration)) +(export '(with-ode-integration next-step))
(defmacro with-ode-integration ((function time step-size max-time dependent dimensions
Thanks, fixed and pushed. That whole with-ode-integration is a bit hackish and maybe could use some rethinking, if you have any ideas.
Liam
On Wed, Apr 6, 2011 at 11:02 AM, Fedor Bezrukov < Fedor.Bezrukov@physik.uni-muenchen.de> wrote:
I guess next-step should be exported
ordinary-differential-equations/ode-system.lisp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ordinary-differential-equations/ode-system.lisp b/ordinary-differential-equations/ode-system.lisp index 2e0490f..851b5ac 100644 --- a/ordinary-differential-equations/ode-system.lisp +++ b/ordinary-differential-equations/ode-system.lisp @@ -20,7 +20,7 @@
(in-package :gsl)
-(export '(with-ode-integration)) +(export '(with-ode-integration next-step))
(defmacro with-ode-integration ((function time step-size max-time dependent dimensions -- 1.7.4.2
GSLL-devel mailing list GSLL-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/gsll-devel
On Apr 8, 2011, at 15:38 , Liam Healy wrote:
Thanks, fixed and pushed. That whole with-ode-integration is a bit hackish and maybe could use some rethinking, if you have any ideas.
Probably, I have not yet understood it fully :) Though one thing is definitely needed (I'll think of it when I have some time) -- ability to make the function for the ode to get and return the arguments as an array -- quite a common case if you want to solve a large system of differential equations (eg, inital value problem for an ODE)
Fedor