Re: [Numpy-discussion] A step toward merging odeint and ode

2012-08-20 Thread Ralf Gommers
On Thu, Aug 16, 2012 at 12:46 PM, Fabrice Silva si...@lma.cnrs-mrs.frwrote: Le mercredi 15 août 2012 à 20:54 +0200, Ralf Gommers a écrit : I was mixing it up a bit, but yes: the _odepack extension and the C source for it. Not necessary to do that at once I guess, but wrapping the same

Re: [Numpy-discussion] A step toward merging odeint and ode

2012-08-16 Thread Fabrice Silva
Le mercredi 15 août 2012 à 20:54 +0200, Ralf Gommers a écrit : I was mixing it up a bit, but yes: the _odepack extension and the C source for it. Not necessary to do that at once I guess, but wrapping the same function twice is once too many. And forgot in my first email: nice PR, looks

Re: [Numpy-discussion] A step toward merging odeint and ode

2012-08-15 Thread Fabrice Silva
Le mardi 14 août 2012 à 21:21 +0200, Ralf Gommers a écrit : On Sun, Aug 12, 2012, Fabrice Silva si...@lma.cnrs-mrs.fr wrote: I made a pull request [1] to integrate the LSODA solver that is used in odeint into the modular scipy.integrate.ode generic class. In a similar

Re: [Numpy-discussion] A step toward merging odeint and ode

2012-08-15 Thread Ralf Gommers
On Wed, Aug 15, 2012 at 10:42 AM, Fabrice Silva si...@lma.cnrs-mrs.frwrote: Le mardi 14 août 2012 à 21:21 +0200, Ralf Gommers a écrit : On Sun, Aug 12, 2012, Fabrice Silva si...@lma.cnrs-mrs.fr wrote: I made a pull request [1] to integrate the LSODA solver that is used in

Re: [Numpy-discussion] A step toward merging odeint and ode

2012-08-14 Thread Ralf Gommers
On Sun, Aug 12, 2012 at 12:41 PM, Fabrice Silva si...@lma.cnrs-mrs.frwrote: I made a pull request [1] to integrate the LSODA solver that is used in odeint into the modular scipy.integrate.ode generic class. In a similar way as for vode, it just wraps the already present lsoda.f file (see .pyf

[Numpy-discussion] A step toward merging odeint and ode

2012-08-12 Thread Fabrice Silva
I made a pull request [1] to integrate the LSODA solver that is used in odeint into the modular scipy.integrate.ode generic class. In a similar way as for vode, it just wraps the already present lsoda.f file (see .pyf file) and exposes it within an IntegratorBase subclass adjusting the