Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upper bound DiffEqBase and ExponentialUtilities #891

Merged
merged 6 commits into from
Aug 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,20 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
ArrayInterface = "1.1"
DataStructures = ">= 0.15.0"
DiffEqBase = ">= 5.20.0"
DiffEqDiffTools = ">= 0.14.0"
ExponentialUtilities = ">= 1.2.0"
ForwardDiff = ">= 0.10.3"
GenericSVD = ">= 0.0.2"
MuladdMacro = ">= 0.2.1"
NLsolve = ">= 0.14.1"
Parameters = ">= 0.10.0"
RecursiveArrayTools = ">= 0.18.6"
SparseDiffTools = ">= 0.3.0"
StaticArrays = ">= 0.10.3"
DataStructures = "0.17"
DiffEqBase = "5.20"
DiffEqDiffTools = "1"
ExponentialUtilities = "1.2"
ForwardDiff = "0.10.3"
GenericSVD = "0.2"
MacroTools = "0.5"
MuladdMacro = "0.2.1"
NLsolve = "4"
Parameters = "0.11"
RecursiveArrayTools = "1"
Reexport = "0.2"
SparseDiffTools = "0.9"
StaticArrays = "0.11"
julia = "1"

[extras]
Expand Down
10 changes: 2 additions & 8 deletions test/downstream/delaydiffeq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,7 @@ DDEProblemLibrary.importddeproblems()
@test sol.errors[:l∞] < error

sol_scalar = solve(prob_scalar, ddealg)

if alg isa OrdinaryDiffEq.OrdinaryDiffEqNewtonAdaptiveAlgorithm
@test_broken sol.t ≈ sol_scalar.t
@test_broken sol[1, :] ≈ sol_scalar.u
else
@test sol.t ≈ sol_scalar.t
@test sol[1, :] ≈ sol_scalar.u
end
@test sol.t ≈ sol_scalar.t
@test sol[1, :] ≈ sol_scalar.u
end
end