Skip to content

Commit

Permalink
hotfix jumpproblem solve
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed May 30, 2020
1 parent da386a6 commit 34465dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DiffEqBase"
uuid = "2b5f629d-d688-5b77-993f-72d75c75574e"
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
version = "6.36.0"
version = "6.36.1"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
4 changes: 4 additions & 0 deletions src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ function solve(prob::AbstractNoiseProblem,args...; kwargs...)
__solve(prob,args...;kwargs...)
end

function solve(prob::AbstractJumpProblem,args...; kwargs...)
__solve(prob,args...;kwargs...)
end

function get_concrete_problem(prob::AbstractJumpProblem; kwargs...)
prob
end
Expand Down

0 comments on commit 34465dc

Please sign in to comment.