Skip to content

Commit

Permalink
Remove Sundials reexport
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Feb 2, 2019
1 parent dd1e35f commit 3e74f7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/DifferentialEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module DifferentialEquations
@reexport using SteadyStateDiffEq
@reexport using StochasticDiffEq
@reexport using OrdinaryDiffEq
@reexport using Sundials
using Sundials
@reexport using DelayDiffEq

@reexport using DiffEqCallbacks
Expand Down
4 changes: 2 additions & 2 deletions test/default_dae_alg_test.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using DifferentialEquations, Test
using DifferentialEquations, Test, Sundials

using DiffEqProblemLibrary.DAEProblemLibrary: importdaeproblems; importdaeproblems()
import DiffEqProblemLibrary.DAEProblemLibrary: prob_dae_resrob

prob = prob_dae_resrob
sol = solve(prob)

@test typeof(sol.alg) <: IDA
@test typeof(sol.alg) <: Sundials.IDA

0 comments on commit 3e74f7b

Please sign in to comment.