Conversation
|
LGTM, although I'm not sure why we want to keep and export the old implementation - aren't we running the same tests on the new one as we did on the old one? Btw, the Travis build failed once due to connectivity issues with Github, probably related to the ongoing DDoS attack against GH. I restarted it hoping for better luck this time. |
src/ode23_ncm.jl
Outdated
There was a problem hiding this comment.
This paragraph seems wrong, no?
There was a problem hiding this comment.
Yes, it is outdated. Part of #57 was about fixing this.
|
It's not exported. But I also don't mind to remove it. I also had problems to push to my github repo. Let's hope they sort it out. |
…cm. README and LICENSE updated.
|
Thanks to @tlycken's patch I hope that both Travis runs will pass now. The question remains if we want to keep the old |
|
Is the new implementation independent enough that we can drop any possible licensing issues we had with the old one? (I seem to recall a discussion about MATLAB's license not being MIT-compatible...) |
|
I don't know about the form of license of the old |
|
I that case I'd say, better remove |
|
I removed @mauro3 : It would be great to have your RK implementation in ODE.jl. And it shouldn't be too hard to replace |
|
I had taken Perhaps it is best to remove |
|
@acroy Are you waiting for something specific to merge this? |
|
No, it was just Easter dementia :-) |
Change ode23 to call oderkf (i.e. ode23_bs) and remove old implementation.
Now uses new ode23 interface in ODE.jl (c.f. SciML/ODE.jl#61) Removes old demo code
As discussed this changes
ode23to calloderkfwith Bogacki–Shampine coefficients. The originalode23is renamed toode23_ncm(and moved to a separate file) for comparison and regression detection. README and LICENSE are updated.