From 3d7a211a25b8c9bce301031eaf69a1c7e7316b21 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Wed, 14 Dec 2016 09:50:48 -0800 Subject: [PATCH] Fix exports --- src/ODE.jl | 3 +++ src/common.jl | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ODE.jl b/src/ODE.jl index e22d21fbb..3baed63d4 100644 --- a/src/ODE.jl +++ b/src/ODE.jl @@ -21,6 +21,9 @@ export ode23s # non-adaptive stiff: export ode4s +# Common Interface +export ODEJLAlgorithm + ## complete function export list: see runtests.jl ############################################################################### diff --git a/src/common.jl b/src/common.jl index ef4fd2237..bc15f9197 100644 --- a/src/common.jl +++ b/src/common.jl @@ -60,5 +60,3 @@ function solve{uType,tType,isinplace,AlgType<:ODEJLAlgorithm,F}(prob::AbstractOD build_solution(prob,alg,ts,timeseries, timeseries_errors = timeseries_errors) end - -export ODEJLAlgorithm, ode23Alg, ode23sAlg, ode45Alg, ode78Alg