SciML / ODE.jl

Assorted basic Ordinary Differential Equation solvers for scientific machine learning (SciML). Deprecated: Use DifferentialEquations.jl instead.
Other
105 stars 49 forks source link

Fix ode4 argument order in comments #48

Closed swt30 closed 10 years ago

swt30 commented 10 years ago

If you're like me, you spend waaay too long wondering why the simple RK4 solver isn't working instead of actually checking the function itself. The comments above the function had the argument order wrong - this tiny commit fixes that.

tomasaschan commented 10 years ago

Yeah, the API is still in flux and this apparently wasn't caught in code review when the order was changed in the function definition.

Thanks a lot for the fix! =)