Skip to content

Commit

Permalink
Merge branch 'fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Apr 11, 2017
2 parents ffa46f0 + d1351f4 commit 057c492
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
julia 0.5
Reexport 0.0.3
DiffEqBase 0.8.0
DiffEqBase 0.15.0
StochasticDiffEq 1.0.0
FiniteElementDiffEq 0.0.5
DiffEqDevTools 0.2.0
Expand Down
2 changes: 1 addition & 1 deletion src/dae_default_alg.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function default_algorithm{uType,duType,tType,isinplace,F}(prob::AbstractDAEProblem{uType,duType,tType,isinplace,F};kwargs...)
function default_algorithm{uType,duType,tType,isinplace}(prob::AbstractDAEProblem{uType,duType,tType,isinplace};kwargs...)
o = Dict{Symbol,Any}(kwargs)
extra_kwargs = Any[]; alg=IDA() # Standard default
uEltype = eltype(prob.u0)
Expand Down
2 changes: 1 addition & 1 deletion src/dde_default_alg.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function default_algorithm{uType,tType,lType,isinplace,F,H}(prob::AbstractConstantLagDDEProblem{uType,tType,lType,isinplace,F,H};kwargs...)
function default_algorithm{uType,tType,lType,isinplace}(prob::AbstractConstantLagDDEProblem{uType,tType,lType,isinplace};kwargs...)
o = Dict{Symbol,Any}(kwargs)
extra_kwargs = Any[]; alg=MethodOfSteps(Tsit5()) # Standard default
uEltype = eltype(prob.u0)
Expand Down
2 changes: 1 addition & 1 deletion src/sde_default_alg.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function default_algorithm{uType,tType,isinplace,NoiseClass,F,F2,F3}(prob::AbstractSDEProblem{uType,tType,isinplace,NoiseClass,F,F2,F3};kwargs...)
function default_algorithm{uType,tType,isinplace,NoiseClass,ND}(prob::AbstractSDEProblem{uType,tType,isinplace,NoiseClass,ND};kwargs...)
o = Dict{Symbol,Any}(kwargs)
extra_kwargs = Any[]; alg=SRIW1() # Standard default
uEltype = eltype(prob.u0)
Expand Down

0 comments on commit 057c492

Please sign in to comment.