mauro3 / IVPTestSuite.jl

Differential equation (ODE & DAE) solver test suite
Other
9 stars 2 forks source link

Complete removal of meta-programming for importing solvers #8

Closed obiajulu closed 8 years ago

obiajulu commented 8 years ago

We instead move to a Dictionary which stores (solverfn, solver) pairs, where solverfn is the integrator being imported, and solver is the IVPTestSuite solver instance.

Note: this branch imports the experimental solver ODE.ode_ab_adaptive, which is not in the release version of ODE.jl, so this is expected to cause some problems if ODE.ode_ab_adaptive from @obiajulu's ob\a-b_adaptive branch of ODE.jl is not used. To use without this branch, simply comment out the code pertaining to ODE.ode_ab_adaptive

mauro3 commented 8 years ago

I did another few small changes. If the travis passes, please merge it.

mauro3 commented 8 years ago

Yay!